/* Styling the progress bar */
*{
    box-sizing: border-box;

}

body{
    background-color: white;
}

.progress-container{
    width: 24vw;
    height: 1rem;
    border: #13795f solid 0.02rem;
    border-radius: 0.4rem;
    margin: auto;
}

.progress-bar-one{
    width: 4vw;
    height: 1rem;
    background-color:  #13795f;
    border-radius: 0.4rem;
}

.progress-bar-two{
    width: 8vw;
    height: 1rem;
    background-color:  #13795f;
    border-radius: 0.4rem;
}

.progress-bar-three{
    width: 12vw;
    height: 1rem;
    background-color:  #13795f;
    border-radius: 0.4rem;
}
.progress-bar-four{
    width: 16vw;
    height: 1rem;
    background-color:  #13795f;
    border-radius: 0.4rem;
}

.progress-bar-five{
    width: 20vw;
    height: 1rem;
    background-color:  #13795f;
    border-radius: 0.4rem;
}

.progress-bar-six{
    width: 22vw;
    height: 1rem;
    background-color:  #13795f;
    border-radius: 0.4rem;
}

.progress-bar-seven{
    width: 23vw;
    height: 1rem;
    background-color:  #13795f;
    border-radius: 0.4rem;
}


.question-copy{
    max-width: 50rem;
    padding:1rem;
    margin: auto;
}

.question-img{
    max-width: 100%;
    padding:1rem;
    padding-top: 2.4rem;
    margin: auto;
}

.question-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
    margin:1rem;
    margin-top: 2.5rem;
    align-content: center;
}

h1{
    font-family: 'Montserrat', sans-serif;
    margin-top: 0.7rem;
}

.small-heading{
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color:  #6C8A82;
    margin-bottom: 0rem;
    font-size: 1.25rem;
}

p{
    font-family:'Open Sans', sans-serif;
    margin-bottom: 2rem;
}

.answer{
    display: block;
    margin: 1rem;
    padding: 1rem;
    border-radius: 0.4rem;
    background-color: white;
    color: black;
    text-decoration: none;
    border: #13795f 0.08rem solid;
    transition: all 300ms;
    text-align: center;
}

.answer:hover, .answer:focus{
    background-color: #13795f;
    color:#fdfdfd;
    transform: scale(102%);
    cursor: url(../assets/cursor-hover.svg), auto;
}

.answer-grid{

    padding: 1rem;
    border-radius: 0.6rem;
}


img{
    border-radius: 0.4rem;
}

.back-button{
    position: fixed;
    bottom: 0;
    left: 0;
    border: #13795f solid 0.08rem;
    padding: 0.8rem;
    border-radius: 0.4rem;
    background-color: #FDFDFD;
    text-decoration: none;
    color: black;
    transition: all 200ms;
    margin:1.2rem;
    z-index: 2;
}

.back-button svg{
    width: 12; 
    height: 8;
    fill: none;
}

.back-button:hover{
    background-color:#13795f;
    color:#FDFDFD;

    transform: scale(108%);

    cursor: url(../assets/cursor-hover.svg), auto;
}

.back-button:focus{
    background-color:#13795f;
    color:#FDFDFD;

    transform: scale(108%);
}

.back-arrow{
    display: inline-block;
}

.content{
    margin-top: 9rem;
}

@media(max-width: 80rem){
    .question-grid{
        grid-template-columns: 1fr;
        margin-top: 0rem;
    }

    .content{
        margin-top: 7.2rem;
    }
}

@media(max-width: 50rem){
    .question-grid{
        padding: 0.8rem;
    }
}


@media(max-width: 40rem){
    .question-copy h1{
        font-size: 1.5rem;
    }

    h2{
        font-size: 1rem;
    }
}

