
*{
    box-sizing: border-box;
}

/*Sets a simple colour layout for each webpage*/
body{
    margin: 0;
    padding: 0;
    background-color: rgb(226, 233, 253);
}

/*Nav bar style*/
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #137bb7;
    color: white;
}

.brand-title{
    position: absolute;
    font-size: 32px;
    left: 85px;

}

#logo{
    position: relative;
    height: 50px;
    width: 50px;
    left: 20px;

}

.links ul{
    margin: 0;
    padding: 0;
    display: flex;
}

.links li{
    list-style: none;
}

.links li a{
    text-decoration: none;
    color: white;
    padding: 30px;
    display: block;
}

.links li:hover{
    background-color: #4989af;
}

/*The burger button that is displayed once the nav bar is compressed*/
.burgerButton{
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.burgerButton .bar{
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

@media (max-width: 800px) { /*When the burger button has been pressed, applys the following style below*/
    .burgerButton{
        display: flex;
    }

    .links{
        display: none;
        width: 100%;
    }

    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }

    .links ul{
        width: 100%;
        flex-direction: column;
    }

    .links li{
        text-align: center;
    }

    .links li a{
        padding: .5rem 1rem;
    }

    .links.active{
        display: flex;
    }
}



/*Footer content that is displayed at the bottom of each webpage*/

footer{
    background-color: #4989af;
    height: auto;
    width: 100vw;
    padding-top: 40px;
    color: #fff;
    
}

.footerContent{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footerContent h3{

    font-size: 42px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3px;

}

.footerContent{
    max-width: 500px;
    margin: 10px auto;
    line-height: 30px;
    font-size: 14px;
}



.footerBottom{
    bottom: #ffffff;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}
.footerBottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footerBottom{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200p;
}
