* {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 18px;
}

body{
    margin: 0;
}

header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 95%;
    margin-top: 5px;
}

a{
    text-decoration: none;
    color: inherit;
}

#nav-left{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

main{
    margin: 3%;
}

#banner{
    text-align: center;
    font-size: 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5%;
    background-color: rgb(207, 199, 199);
    padding: 5%;
}

h1{
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: blue;
    font-size: 36px;
    margin-bottom: 0;
}

#banner button{
    max-width: 450px;
    height: auto;
    padding: 7.5px;
    box-shadow: 1px 10px 20px gray;
    border: 2px solid blue;
    color: black;
    border: 0;
    outline: 0;
}

#banner button a{
    font-size: 22px;
}

#how-it-works{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5%;
}

h2{
    font-size: 28px;
    text-align: center;
    margin-bottom: 0;
    text-transform: capitalize;
}

.col-3 span{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.col-3 span p:first-of-type{
    font-size: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.col-3 span p:last-of-type{
    text-align: center;
    color: black;
}

#hiw-list span p:first-of-type{
    border-radius: 50%;
    background-color: turquoise;
    font-size: 40px;
}

#for-dd-list{
    margin-bottom: 2.5%;
}

#frameworks{
    margin-top: 5%;
}

#faq-box{
    margin-bottom: 2.5%;
}

.faqs{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.faqs p{
    margin-top: 10px;
}

.faq-content p{
    display: none;
}

#follow-journey{
    text-align: center;
}

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: gray;
    margin: 0;
}

@media screen and (min-width:768px) {
    .col-3{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .col-3 span{
        width: 40%;
    }
}

@media screen and (min-width:1024px) {
    .col-3 span{
        width: 28%;
    }
}