.topnav {
    background-color: #e3f0ee;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topnav a {
    float: left;
    color: #010202;
    text-align: center;
    padding: 16px 20px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #b64747;
    color: black;
  }
  
  /* Add a color to the active/current link */
  .topnav a.active {
    background-color: #d40707;
    color: white;
  }

  .content-container, .project-container {
    padding: 50px;
    text-align: center;
}

.contactinfo
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contactcontainer {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 20px 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #458ba0;
}

.footer {
  text-align: center;
  padding: 10px;
  background-color: #333;
  color: white;
}

.footer p {
  font-size: 1rem;
}

.contactform {
  width:100%;
  height:30vh;
}
.contactcenter
{
  text-align: center;
}