@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

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

html{
    font-size: 17px;
}
section{
font-size: .65rem;
}
body {
    background-color: #062A4E;
    font-family: Lato, sans-serif;
}

.root {
    width: 100vw;
    height: 100vh;
    justify-content: center;
}
:root{
    --correct-color: #7CD58A;
    --wrong-color: #FB7070 ;
}

a {
    text-decoration: none;
    color: #2B50DE;
}
/* Header Styling*/
#logo {
    font-family: Nunito;
    font-style: normal;
    font-weight: bolder;
    font-size: 1.25em;
    line-height: 61px;
    color: white;
}
#header {
    background-color: #062A4E;
    top: 0px;
    position: fixed;
    width: 100%;
    display: block;
    padding-left: 2%;
    padding-top: 1%;   
}

/* Flex Controls*/
.flex {
    display: flex;
}

.col {
    flex-direction: column;
}

.row {
    flex-direction: row;
}

.circle {
    display: inline-block;
    text-align: center;
    font-size: 1.5em;
    border-radius: 100%;
    color: var(--correct-color);
    font-weight: bold;
  
}
#num-correct{
    padding: 1px;
}

.btn.wrong {
    background-color: var(--wrong-color);
    color: white;
}
.btn.correct{
    background-color: var(--correct-color);
    color: white;
}

h3 {
    font-size: 1.85em;
    color: white;
    font-style: normal;
    font-weight: 500;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 850px;
    height: 400px;
}

.question-cont {
    padding: 50px;
    width: 50%;
    /* Gradient */
    background: linear-gradient(180deg, #1D6FA2 0%, #0E4567 100%);
}
.paragraph {
color: white;
display: inline-block;
width: 100%;
height: 100%;
padding-top: 10%;
margin: 10px 10px;
font-weight: 500;
font-size: 2rem;
line-height: 1.2;
}

.answer-cont {
    position: relative;
    align-items: center;
    justify-content: center;
    width: 50%;
    background: #F3F4FB;
    height: 100%;
    padding: 20px 0;
}

.card {
    justify-content: space-between;
    width: 100%;
}

#options{
    align-self: center;
    width: 100%;
    margin: 0 auto;
    align-items: center;
}

button {
    padding: 0.75em 1em ;
    border: none;
    border-radius:12px;
    width:80%;
    color: #495FDE;
    background-color: #EEF0F8;
}

button:hover {
    cursor: pointer;
}

.btn-next,.btn-reset {
    color: white;
    background-color: #495FDE;
    width: 40%;
}

.btn {
    text-align: left ;
    font-size: 18px;
    color: #8F8E8E;
    background-color: white;
    margin-bottom: 10px;
}
button.btn:hover{
    border: 3px solid rgb(180, 195, 255);
    box-sizing: content-box;
    
}
#start-btn{
    padding: 25px;
    font-size: 2em;

}
.select-answer{
text-align: left;
font-weight: 900;
font-size: 1.25em;
color: #8F8E8E;
}
/* Messages Styling*/
#score-msg{
    font-size: 2em;
    font-weight: 350;
}
#total-points {
    font-size: 1.5em;
    font-weight: 700;
    color: blueviolet;
}
#max-question{
    font-size: 0.7em;
}
#current-question{
    font-weight: bolder;
}
#question-title{
    font-weight: 350;
}
#minimum-score{
    font-weight: 500;
    font-size: 1.5em;
    color: rgb(38, 177, 38);
}#maximum-score{
    font-weight: 500;
    font-size: 1.5em;
    color: rgb(230, 230, 230);
}
#correct-numbers-msg{
    font-size: 1.3em;
    font-weight: 500;
    color: rgb(231, 231, 231);
}
#correct-num{
    font-weight: bolder;
    font-size: 1.6em;
    color: rgb(38, 177, 38);
}
.hide{
    display: none;
}
.noclick{
    pointer-events: none;
}



@media screen and (max-width: 600px) {
    #header a {
      text-align: left;
    }
    
section.container{
    flex-direction: column;
}
.question-cont, .answer-cont{
    width: 100%;
}
.container{
    height: auto;
}
.question-cont{
    padding: 20px;
    margin-top: 80px;
}
#question{
    font-size: 2em;
    text-align: center;
    line-height: 1.2;
    max-height: 200px;
}
.root{
    justify-content: start;
}
  }
  @media screen and (max-width:900px){
    html{
        font-size: 15px;
    }
}
  @media screen and (max-width:400px){
      html{
          font-size: 13px;
      }
  }