        .button-container {
            display: flex;
            gap: 15px;
            margin-top: 50px;
            margin-bottom: 20px;
            justify-content: center;
            border-radius: 10px;
        }
        .homeButton {
            background-color: transparent;
            color: white;
            border: none;
            padding: 5px;
            font-size: 20px;
            cursor: pointer;
            border-radius: 5px;
            width: 200px;
            transition: background 0.5s;
            border-radius: 10px;
            box-shadow: inset 0 0 10px #ffffff ,0 0 10px #fde400;
        }
        .homeButton:hover {
            color: #fde300;
            text-shadow: #000000 0 0 15px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
        }