@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Karla:wght@700&display=swap');

* {
    box-sizing: border-box;
    margin:0;
}

body{oveflow: hidden;
    width: 100vw;
    height: 100vh;
    font-family: 'Karla';
    
}
.main-container{
    width: 100vw;
    height: 100vh;
    background-color: #F5F7FB;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-container{
    z-index: 10;
    max-width: 950px;
}
/* =========== MENU =========== */
.startup{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}
.page-title{
    color: #293264;
    font-size: 3.2rem;
}
.page-description{
    color: rgba(41, 50, 100, 1);
    font-size: 1.6rem;
    text-align: center;
}
.start-button{
    color: white;
    border: none;
    padding: 16px 32px;
    background-color: #4D5B9E;
    border-radius: .5rem;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 1.4em;
    line-height: 19px;
}
.check{
    color: white;
    background: #4D5B9E;
    border-radius: 10px;
    border: none;
    padding: 18px 29px;
    justify-self: center;
    font-size: 1rem
}
.start-content-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.end-div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: .2rem;
}
.score{
    font-family: 'Inter';
    font-weight: 800;
    font-size: 1.2rem;
}


/* =========== QUESTION =========== */

.content-container{
    padding: 0 16px;
}

.question-container{
    margin-bottom: .8rem;
    width: 100%;
    text-align: left;
}

.question-title{
    font-size: 1.2rem;
    color: rgb(40, 48, 94);
    margin-bottom: .6rem;
}.answer{
    color: rgba(41, 50, 100, 1);
    background-color: transparent;
    border: 1px solid #4D5B9E;
    font-size: .9rem;
    border-radius: .3rem;
    margin-right: .8rem;
    margin-bottom: .5rem;
    padding: 2px 8px;
}
.line{
    margin-top: .5rem;
    width: 100%;
    border-top: 0.794239px solid #c4c8e0;
}
.select{
    background-color: #D6DBF5;
}

#correct.answer{
    background-color: #94D7A2;
    border: 1px solid #94D7A2;
}
#incorrect.answer{
    background-color: #F8BCBC;
    border: 1px solid #F8BCBC;
}
#not-selected.answer{
    color: rgba(41, 50, 100, .4);
    border: 1px solid rgba(41, 50, 100, .4);
}