
body{
    margin: 0;
    padding: 0;
    background-image: url("background11.png");
    font-family: 'Lato', sans-serif;
    overflow: auto;
  
}
.logo{
    
    background-color: white;
}



.logo img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    opacity: 1.0;
    
    
}
.navbar{
    display: grid;
    grid-template-columns: repeat(4,25%);
    font-size: 25px;
    background-color: #0e50dd;
    color: white;
    text-align: center;
    vertical-align: middle;
    

}
.nav_element{
    padding-top: 10px;
    padding-bottom: 10px;
    
}
h1{
    margin-top: 0;
   
}

.nav_element:hover{
   background-color: rgb(11, 164, 235);
   color: rgb(58, 58, 58);
}
a{
    color: inherit;
}

a:visited{
    text-decoration: none;
}
a:link{
    text-decoration: none;
}

.content{
    margin-top: 50px;
    text-align: center;
    font-size: 21px;

}

.content_contact{
    display: grid;
    grid-template-columns: 40% 40%;
    margin-top: 50px;
    font-size: 21px;
    margin-left: 10%;
    
}

.contact_info{
    margin-left: 15%;
}

.form{
    margin-left: 35%;
}

.footer{
    background-color: #0e50dd;
    text-align: center;
    font-size: 32px;
    color: white;
    height: 45px;
    padding-top: 7px;
    padding-bottom: 8px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
   
}

#rodo{
    color: transparent;
}

input[type=text] {
    padding: 10px;
    font-size: 22px;
    margin-bottom: 10px;
    border-radius: 15px;
    border: 0;
    box-shadow: 4px 4px 10px
    rgba(0, 0, 0, 0.6);
}

input[type=email] {
    padding: 10px;
    font-size: 22px;
    margin-bottom: 10px;
    border-radius: 15px;
    border: 0;
    box-shadow: 4px 4px 10px
    rgba(0, 0, 0, 0.6);
}


textarea{
    width: 100;
    font-size: 22px;
    padding: 15px;
    border-radius: 15px;
    border: 0;
    box-shadow: 4px 4px 10px
    rgba(0, 0, 0, 0.6);
    height: 150px;
    margin-bottom: 10px;

}

button {
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 70%;
    background-color: #0e50dd;
    color: white;
    height: 50px;
    font-size: 18px;
}

button:hover{
    background-color: rgb(11, 164, 235);
    color: rgb(58, 58, 58);
}

.msg::placeholder{
    font-family: 'Lato', sans-serif;
}

@media only screen and (max-width: 600px){

    .navbar{
        display: flex;
        flex-direction: column;
        font-size: 25px;
        background-color: #0e50dd;
        color: white;
        text-align: center;
        vertical-align: middle;
    }

    .logo img{
        width: 50%;
        height: 50%;
    }

    h1{
        font-size: 32px;
    }
} 
