body {
    font-family: sans-serif;
    background-color: #1c1c1c;
    color: #f0f0f0;
}

/* Overarching container */
#triviabox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    overflow-x: hidden;
}

#trivia-content {
    padding: 50px;
}

/* Category and question text */
#question-text {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: bold;
    margin-left: 50px;
    margin-right: 50px;
}

#question-category {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 70px;
}

/* Button styles */
#button-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

#button-container > button {
    font-size: 28px;
    margin: 24px;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, border 0.5s ease-in-out;
    background-color: rgba(255, 105, 180, 0.197);
    color: white;
    padding: 60px;
    border: 10px;
    border-radius: 50%;
    border-color: rgba(255, 255, 0, 0.312);
    border-style: solid;
}

#button-container > button:hover {
    transform: scale(1.5);
    border: 30px yellow solid;
    background-color: rgb(255, 105, 180);
    visibility: visible;
    opacity: 1; /* Set the opacity value here */
}

#score {
    transition: font-size 0.5s ease-in-out;
    font-size: 36px;
    margin-top: 15px;
    font-weight: bold;
}