* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
/*------------header-----------------*/
.header{
    width: 100%;
    height:25px;
    background-color: rgb(51, 134, 169);/* entire background*/
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;/* 4 navigation tabs in the top right*/

}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;/*removes bullet points*/
    display: inline-block;/*puts them next to each other*/
    padding: 8px 12px;/*Spaces between each word*/
    position: relative;
}
.nav-links ul li a{
    color: rgb(0, 0, 0);/*Link color*/
    text-decoration: none;/*remove underline*/
    font-size: 23px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #b01e14;/*underline under nav*/
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;/*Goes with the top*/
}
/*------------content-----------------*/
.section {
    width: 100%;
    min-height: 100vh;
    background-color: rgb(223, 223, 227);
}
.container {
    width: 80%;
    display: block;
    margin: auto;
    padding-top: 100px;
}
.content-section {
    float: left;
    width: 55%;
}
.image-section {
    float: right;
    width: 40%;
}
image-section img {
    width: 100%;
    height: auto;
}
.content-section .title {
    text-transform: uppercase;
    font-size: 28px;
}
.content-section h3 {
    margin-top: 20px;
    color: rgb(31, 69, 159);
    font-size: 19px;
}
.content-section p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.5;
}

/*------------goals-----------------*/