*, *::before, *::after{
    box-sizing: border-box;
    font-size: large;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

@media (max-width: 480px) {

    .text {
      font-size: 16px;
    }

    .input-cnt {
        display: flex;
        flex-direction: column;
        align-content: center;
    }

    #counter {
        margin-bottom: .5rem;
    }
  }

@media (max-width: 768px) {

    .text {
      font-size: 100px;
    }

    .input-cnt {
        display: flex;
        flex-direction: column;
        align-content: center;
        
    }

    #counter {
        margin-bottom: .5rem;
    }
  }

html,body {
    padding: 0;
    margin: 0;
    background-color: #3d6cb9;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heading {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    background-color:#020024;
    width: 100%;
    text-align: center;
    border: 5px solid #3d6cb9;
    border-radius: 10px;
    color: whitesmoke;
    justify-content: center;
    padding: 10px;
}


.input-cnt {
    /* margin-bottom: 1.5rem; */
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

#counter {
    text-align: center;
    height: 4rem;
    border-radius: 5px;
    box-shadow: 5px 5px 8px #000000;
    font-size: x-large;
    font-weight: bold;
    
}

#score {
    text-align: center;
    height: 4rem;
    border-radius: 5px;
    box-shadow: 5px 5px 8px #000000;
    font-size: x-large;
    font-weight: bold;

}

.container {
    width: 800px;
    max-width: 85%;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: whitesmoke;
    border-radius: 5px;
    /* padding: 10px; */
    text-align: center;
    box-shadow: 5px 5px 8px #000000;
}

form {
    text-align: start;

}

.answers {
    border-radius: 5px;
    background-color: #a56cc1;
    color: whitesmoke;
    text-align: center;
    font-size: large;
    width: 100%;
}

.answers:hover {
    background-color: #020024;
}
.answers:focus {
    background-color: #020024;
}

input[type="radio"] {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Chrome, Safari, Opera */
    transform: scale(1.5);
    
}

fieldset {
    padding: 0;
    border: 0;
    
}

.question-container {
    margin-bottom: 20px;
}

#question {
    text-align: center;
    font-weight: bold;
    font-size: 25px;
}

.hide {
    display: none;
}

#start-button, #next-button, #restart-button, #submit-button {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 20px;
    width: 90%;
    border-radius: 5px;
}

#start-button:hover, #next-button:hover, #restart-button:hover, .radio:hover {
    background-color: #020024;
    color: whitesmoke;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

body.correct {
    background-color: green;
}

body.wrong {
    background-color: red;
}

/* .wrong {
    background-color: red;
} */

.right {
    background-color: greenyellow;
    color: black;
}