*{
    margin: 0;
    padding: 0;
}

body{
    background-image: linear-gradient(135deg, #536976 10%, #292E49 100%);
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100vh;
}
.container{
    width: 100%;
    display: flex;
  justify-content: center;
  gap: 20px;
}
.container .time{
     color: #fff;
    margin: 50px;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
}
#timer{
    min-width: 40px;
    text-align: center;
}

.main-heading{
    /* text-align: center; */
    color: #fff;
    margin: 50px;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    text-decoration: underline;
}

.question-container{
    width: 50%;
    height: 20vh; 
    background-image: linear-gradient(135deg, #E3FDF5 10%, #FFE6FA 100%);      
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);

}
#question{
    font-size: 22px;
    color: #333;
}
.options{
    margin-top: 20px;
}
label{
    font-size: 18px;
    color: #555;
    margin : 10px ;
    font-weight: 520;
}

button{
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4cafaf;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;

}
@media (max-width: 768px) {

    body{
        width: 100%;
        min-height: 100vh;
        margin: 0;
        padding: 0;
        background-image: linear-gradient(135deg, #536976 10%, #292E49 100%);
        overflow-x: hidden;
    }

    .container{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px;
        box-sizing: border-box;
    }

    .question-container{
        width: 100%;
        height: auto;
        max-width: 500px;
        padding: 15px;
        box-sizing: border-box;
    }

    .time{
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #timer{
        font-size: 28px;
        min-width: 40px;
        text-align: center;
    }
}