*{
    margin: 0;
    padding: 0;
}

.heading{
    min-height: 20vh;
    min-height: 20dvh;
    background-color: #30321C;
    padding: 30px;
    font-size: 300%;
    text-align: center;
    color: white;
}

@media (max-width:450px){
    .heading{
        font-size: 250%;
    }
}

@media (max-width:340px){
    .heading{
        font-size: 150%;
    }
}

@media (max-width:240px){
    .heading{
        font-size: 100%;
    }
}

@media (min-width:1200px){
    .heading{
        font-size: 320%;
    }
}

@media (min-width:1300px){
    .heading{
        font-size: 340%;
    }
}

@media (min-width:1400px){
    .heading{
        font-size: 360%;
    }
}

@media (min-width:1500px){
    .heading{
        font-size: 380%;
    }
}

H3{
    min-height: 5vh;
    min-height: 5dvh;
    background-color: #6B654B;
    padding: 30px;
    font-size: 20px;
    text-align: center;
    color: white;
}

.container{
    min-height: 75vh;
    min-height: 75dvh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #30321C;
}

#Answer{
    height: 20vh;
    height: 20dvh;
    min-height: 80px;
    width: 40vw;
    width: 40dvw;
    min-width: 300px;
    padding: 8px;
    background-color: #6B654B;
    border: 5px solid #4a4b2f;
    color: #D4DF9E;
    font-size: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.answer2{
    font-size: 80%
}

#Question{
    height: 20vh;
    height: 20dvh;
    min-height: 80px;
    width: 40vw;
    width: 40dvw;
    min-width: 300px;
    padding: 8px;
    background-color: #6B654B;
    border: 5px double #4a4b2f;
    color: #D4DF9E;
    display: flex;
    justify-content: space-between;
    font-size: 40px;
}

@media(max-width:400px){
    #Question , #Answer{
        min-width: fit-content;
        font-size: xx-large;
    }
    p{
        font-size: 20px;
    }
}

.start ,#button2{
    align-self: flex-end;
}

button{
    padding: 6px;
    font-size: 85%;
    border: 1px solid aquamarine;
    background-color: black;
    color: aliceblue;
    transition: all 0.1s steps(20) 0s;
}

button:active{
    transform: scale(1.5);
}

#Guess{
    align-self: center;
    width: 60%;
    max-width: 200px;
    margin-left: 1vw;
    min-height: 2vh;
    max-height: 5vh;
    border: none;
    background-color: cadetblue;
    text-align: center;
}

#questiontext{
    font-size: 82%;
}

#button1 , #button2{
    font-size: 60%;
}

@media (max-width:820px){
    #button1, #button2{
        font-size: 50%;
    }
    #answer2{
        font-size: 70%;
    }
}

@media (max-width: 650px){
    .container{
        flex-wrap: wrap;
    }
}