body, h1, h2, p, ul, li{
    margin: 5px;
    justify-content: center;
    align-items: center;
    font-family:sans-serif,arial;

}


h1{
    color:white;
    text-align: center;
}
header{
    background-color: #6dbcf0;
    color:#647fba;
    text-align: center;
    padding: 10px;
    height:100px;
    width:100%;
    margin:0;
}
.logo-nav{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
header img{
    height: 50px;
}
nav ul{
    list-style-type: none;
}
.active {
    background-color: rgb(250, 250, 250);
    padding:10px;
  }
nav li {
    display: inline;
    margin: 20px;
}
nav a{
    text-decoration: none;
    color:rgb(0, 0, 0);
    font-family: sans-serif;
    font-size: 20px;
}
nav a:hover{
    color:#ffffff;
    font-size: 20px;
    text-decoration: none;
}
main {
    padding:10px;
    margin:auto;
    display:flex;
    justify-content: center;
    align-items: center;
    
    
    }

    
    .section {
        background-color:#89d9e7;
        display:flex;
        flex-wrap: wrap;
        justify-content: center;
        

    }
    .content-box {
        width: 380px; 
        height: 500px; 
        margin: 20px;
        padding: 15px;
        background-color: #9ab8f0;
    }
    
    .content-box h2{
        font-size: 17px;
        color:#fbfeff;
    }
    .content-box p{
        font-size: 14px;
        text-align: justify;
    }
    .content-box img{
        width:380px;
        height:200px;
        margin-bottom: 10px;

    }



footer{
    background-color: #6dbcf0;
    color:#ffffff;
    text-align: center;
    line-height: 60px;
    padding: 10px;
    height: 60px;
    font-size:1.1em;
    width:100%
}
footer a{
    margin-left: 30px;
}
form h2{
    font-family: 'Arial Narrow Bold';
    color:rgb(0, 0, 0);
}
   
input[type=text]{
    width:100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;

}
form{
    background-color: #89d9e7;
}
button[type=submit]{
    background-color: #647fba;
    border:none;
    color:white;
    padding: 16px 32px;
    text-decoration: none;
    margin: 4px;
    cursor: pointer;
    width:500px;
    font-size:17px;
}
button[type=submit]:hover{
    background-color: rgb(255, 255, 255);
    color:black;
}
textarea {
    width: 100%;
    height: 200px;
    padding: 12px 20px;
    color:black;
    box-sizing: border-box;
    font-size: 15px;
    /*resize: none; */
}
