@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

/*css needs to be cleaned up*/

html { scroll-behavior: smooth; } /*scroll to top*/

body{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    background-color: #F2F2F2;
    color: #2E3033;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}
ul{
    padding: 0;
    list-style: none;
}

.section{
    max-width: 100%;
    margin: 15px; 
    background-color: #FFFFFF;
}

.row {
    max-width: 1400px;
    margin:auto;
    display: flex;
    flex-wrap: wrap;
    padding-top: 65px; /*cant be put in main?*/
}

.column {
    flex: 500px; 
}

.container {
    position: relative;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left:15%;
    margin-right: 15%;
}

.section p{
    line-height: 1.6;
}

.mainimage{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:100%;
}

.secondimage{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
}

.benefits{
    max-width: 900px;
    margin: auto;
}

.benefits h2{
    text-align: center;
}

.benefits li{
    margin-bottom: 20px;
}

.benefits ul{
    list-style: none;
    margin-right: 35px; 
    margin-left: 35px; 
}

.contact h2{
    text-align: center;
}

.contact button{

    margin: auto;
    display: block;
    border: none;
    background-color: #0071E3;
    color: white;
    width: 150px;
    height: 40px;
    border-radius: 25px;
    font-size: 15px;
    cursor:pointer;
}

.contact button:hover{
    filter: brightness(110%);
}

.header{
    background-color: #2E3033;
    position: sticky;
    top: 0;
    width: 100%;
}

.logo{
    color: white;
    font-size: 15px;
    width: 80px;
    display: flex;
    align-items: center;
    margin: auto;
}

footer{
    font-size: 15px;
    text-align: center;
    margin: 60px;
}