:root {
    --primary-font-color: #FFFFFF;
    --base-font-size: 18pt;
    --background-color: #212121;
    --box-color: #303030;
    --question-color: #F4F4F4;
    --question-info: #818181;
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Centering content in the page */
.container {
    text-align: center;
    background-color: var(--box-color);
    padding: 20px;
    border-radius: 48px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    transition: transform 0.3s ease;
}

.container:hover {
    transform: scale(1.05);  /* Slight zoom effect on hover */
}

/* Main header */
h1 {
    font-size: 24pt;
    margin-bottom: 20px;
    color: var(--primary-font-color);
}

/* Question text */
#question-box {
    margin-bottom: 20px;
}

#question {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--question-color);
    margin-bottom: 20px;
}

/* Question number display */
#question-info {
    font-size: 1.1rem;
    color: var(--question-info);
    margin-bottom: 10px;
}

/* Button styling */
button {
    font-size: 1.2rem;
    padding: 12px 25px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Button hover effect */
button:hover {
    background-color: #2980b9;
    transform: translateY(-2px); /* Button moves up slightly */
}

/* Button active (clicked) effect */
button:active {
    transform: translateY(2px); /* Button moves down slightly */
}

/* Disabled button styling */
button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

/* Container for Back, New, Next buttons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 10px; /* space between buttons */
    margin-top: 15px;
}

/* Add responsive design for smaller screens */
@media (max-width: 600px) {
    h1 {
        font-size: 12pt;
    }

    #question {
        font-size: 1.2rem;
    }

    #question-info {
        font-size: 1rem;
    }

    button {
        font-size: 1.1rem;
        padding: 10px 20p
}
}

