body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(193, 182, 164);

}

h1 {
    font-size: 50px;
}

/*image size*/
#element-image{
    width:280px;
    height: 280px;
    margin-bottom: 20px;
    border-radius: 25px;
}

#quiz-container {
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    gap: 10px;

}

#timer {
    font-size: 30px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
}

#score{

    font-size: 20px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;


}

/*decorating the buttons*/
#quiz-container button {
    background-color: gray;
    color:white;
    width: 280px;
    height: 50px;
    border-radius: 10px;
    font-size: 16px;
}

/*When hovering, box is light gray*/
#quiz-container button:hover{
    background-color: lightgray;
}


