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

body {
    font-family: 'Karla', sans-serif;
    color: #293264;
    background-color: #F5F7FB;
    height: 100vh
}

main {
    display: grid;
    font-size: 24px
}

/****** start screen ******/

.img-blob-1 {
    position: fixed;
    bottom: 0;
    z-index: 0;
}


.img-blob-2 {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 0;
}


.intropg-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    z-index: 0;
}

.intropg-container > h1 {
    margin-bottom: .3em
}

.option-container {
    margin-top: 1.5em;
    
}

.option-container > select {
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: .8em;
    padding: .5em 1em;
    border-radius: 5px;
    background-color:#DBDEF0;
    cursor: pointer;
    background-image: url(images/Orion_navigation-down\ \(1\).png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: right 2% top 50%;
}

.option-container > select:focus,
.option-container > select:hover {
    box-shadow: 3px 3px 8px -3px #DBDEF0;
}


.btn-start {
    border: none;
    border-radius: 0.9375rem;
    background: #4D5B9E;
    color: #F5F7FB;
    font-family: inherit;
    font-weight: 500;
    font-size: .75em;
    padding: 1em 3.5em;
    margin-top: 2em;
    cursor: pointer
}

.btn-start:active {
    box-shadow: inset 3px 3px 10px -3px #232323;
}

.content-container {
    display: block;
    padding: 1px;
    margin: 0 auto;
    z-index: 0
}

/****** question styles ******/

.question-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    z-index: 1;
    margin: 2.5em 2.5em 0;
    
}

.question,
hr,
.answer-container {
    margin-bottom: 1em;
}

.question {
    color: #293264;
    font-size: 1em;
}

hr {
    background-color: #DBDEF0;
    opacity: .3;
}

.answer-container {
    display: flex;
    flex-wrap: wrap;
    gap: .8em
}

.btn-answer {
    border-radius: 0.49638rem;
    border: .5px solid #4D5B9E;
    padding: .2em .6em;
    color: #293264;
    font-size: 0.7em;
    font-family: inherit;
    cursor: pointer
}

.btn-answer:active {
    box-shadow: inset 1px 1px 8px -3px #4D5B9E;
}

.score-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1em 2.5em 50px;
    gap: 1.25em

}

.btn-submit {
    background-color: #4D5B9E;
    color: #F5F7FB;
    width: 200px;
    height: 40px;
    border: none;
    border-radius: 10px;
    text-align: center;
    font-family: inherit;
    font-size: 0.64em;
    font-weight: 600;
    z-index: 0;
    cursor: pointer;
}

.btn-submit:active {
    opacity: .9;
}

.score {
    color: #293264;
    font-size: 0.8em;
    text-align: center;
    font-weight: 700;
    z-index: 0;

}


/******** media styles *********/

@media(min-width: 700px) {

    .answer-container {
        flex-wrap: nowrap;
    }


}





