

.header{
  
    height: 70px;
    padding: 20px 20px 20px 20px;
}

.menuitem{
    display: inline-block;
    padding: 10px 20px 10px 20px;
    float: right;
    font-family: poppins;
    color:black;
    text-decoration: none;
}

.logo{
    width: 200px;
    height: auto;
    display: inline-block;
}

.headerleft{
    width: 20%;
    display: inline-block;
    float: left;
}
.headerright{
    width: 70%;
    display: inline-block;
    float: right;
 
}
.mainbody{
    margin-top: 80px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
}

.image{
    width: 50%;
    max-width: 300px;
    
}

.textblock{
    width: 50%;
}

p{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

h1{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;   
}

.sociallinks{
    padding-top: 20px;
    width: 10%;
    min-width: 230px;
    display: block;
    margin: auto;
    text-align: center;
}

.sociallinks > a{
    color: black;
    font-size: 20px;
    width: 30px;
    text-decoration: none;
}

.sociallinks:hover > a{
    color: rgb(131, 131, 131);
}

.sociallinks > a:hover{
    color:black;
}

footer > div > a{
    color:black;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.otherlinks{
    padding-top: 30px;
    width: 80%;
    min-width: 280px;
    margin: auto;
    text-align: center;
 
}

@media(max-width:800px){
    .mainbody{
        flex-direction: column;
    }

    .textblock{
        width: 80%;
    }
}

@media(max-width: 1150px){
    .headerright{
        display: none;
    }
}