.logo {
    float: right;
    width: 500px;
    height: 500px;
}
.section {
    display: flex;
    justify-content: space-between; 
    gap: 20px;
}
.inside_section {
    flex: 1; /* Makes all sections equal width */
    text-align: center;
}

.body-img {
    width: 500px; 
    max-width: 300px; 
    height: auto; 
   
} 
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav li {
    margin: 20px;
}

nav a {
    text-decoration: none;
    color: rgb(19, 20, 20);
    font-family:sans-serif;
    font-size: 20px;
}

nav a:hover {
    color: #1019c6;
}
h1 {
    text-align: center
}
p{
    font-family:sans-serif ;
}
div {

    border: 2px solid rgb(244, 245, 246);
    background-color: #a2b5ce;
    font-family: sans-serif;
    color: rgb(2, 2, 3); 
    margin:10px;
    display: inline-block;

}
section {
    font-family: sans-serif;
    padding: 30px;
    background-color:#ccdffb ;
    border: 2px solid #37474F;
    text-align: center;
    color: #37474F;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
body{
    background-color:#abc9ec;
}
footer{
    text-align: center;
    padding-bottom: 20px;

}
.h2{
    text-align: center;
}
.page2{
    background: #f2f2f2;
    padding: 20px;
    border-radius: 5px;
  }
  
  input, select, textarea, button {
    width: 100%;
    padding: 10px;
    margin: 8px;
    border: 1px solid #7d821c;
    border-radius: 4px;
  }
  
  textarea {
    height: 80px;
  }
  
  button {
    background: #4CAF50;
    color: white;
    cursor: pointer;
    border: none;
  }