html,body{
    margin:0;
    padding: 0;
    background-color: white;}
.mainheader{
    width: 100%;
    line-height: 200px;
    background-color: #5c616e;
    color:#ffff99;
    font-size: 5vw;
    font-weight: normal;
    text-align: center;
    height: 200px;
    background-image: url(/img/header.jpg);
    background-size: cover;    
}
.mainheader p{
    margin: 0;
    padding: 0;
}

.maincontent{    
    background-color:cadetblue;
    margin: auto;
    padding: 0;
    height: 100%;
    text-align: center;    
    color:aliceblue;
    font-size: 3vw;    
    height: 65vh;     
    height: 70vh;
    width: 100vh; 

}
.maincontent input[type=text]{
    width: 300px;
    height: 50px;
    background-color: #5c616e;
    color: white;
    border-radius: 10px;
    font-size: 20px;
    text-align: center;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all 0.5s ease-out
}
.maincontent input[type=text]:focus{
    width: 400px;
}
.maincontent select{
    width: 200px;
    height: 50px;
    font-size: 30px;
    background-color:#00798C;
    text-align: center;
    color: white;
    border-radius: 10px;
}
.rowdiv{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.rowdiv a{
    text-decoration: none !important;
    text-decoration-style: none;
}
.button{
    width: 200px;
    height: 50px;
    background-color:#00798C;
    color:white;
    border-radius: 10px;
    text-align: center;
    font-size:25px;
    font-weight: 400;
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;    
    transition: all 0.5s;
}
.button:hover{
    width: 200px;
    background-color:#ffff99;
    color:#5375e2;
}

.menublock{
    text-align: center;
    background-color: #456990;
   
}
.menublock:hover{
    background-color:#89A7A7;
}
.menuitem{
    display: inline-block;
    float:left;
    padding-left: 10px;
    font-size: 17px;
    
}
.menublock img
{
    width: 75px;
    height: 75px;
    display: inline-block;      
    float:left;
    padding:10px;
}
.menublock ul{
    margin: 0;
    padding-top: 0; 
    list-style: none;  
   text-align: center;
  
}
.menublock ul:hover{
    background-color: #89A7A7;
}
.menublock ul li 
{
    color: white;
    
    text-align: center;   
    height: 100px;
    line-height: 75px;
    margin: 0;
    padding: 0;
    font-size: 10px;
    transition: all 0.5s;
}
.menublock li:hover{    
    color:#00494e;
    font-size: 35px;
    text-shadow: 2px 2px #5c616e;
}
.menublock ul li:hover>div>img{
    border: #00494e 5px solid;
    border-radius: 50%;
    display: inline-block;      
    float:left;
    padding:10px;
}
.mainfooter{
    height: 50px;
    line-height: 50px;
    background-color:#548484;
    text-align: center;
    font-size: 30px;
}
.mainfooter ul{
    margin:0;
    padding: 0;
    list-style: none;
    display: inline-block;
}
.mainfooter ul li{
    display: inline-block;
    color: white;  
    padding-right:60px; 
}
.mainfooter ul li:hover{
    color: #5375e2;
}
@media only screen and (max-width: 600px) {
    .mainheader{
        font-size: 7vw;
    }
    .maincontent{
        width: 100%;
        float: none;
    }
    .menublock{
      display: none;
    }
    #mobilemenuid{
        height: 30px;
    }
    .mobilemenu >.menuheader{
        transform: scaleY(1);
        text-align: center;
        background-color: #1b9d73;
        transform-origin: top;
        transition: all 0.5s;
        font-size: 20px;   
        height: 30px;
        line-height: 30px;
    }
   .mobilemenu>.menuheader:hover+.mmitems ul{
        display: block;
        transform:scaleY(1);
    }
    .mainfooter{display: none;}
       
}