body {
  background-color: #657c30;
  min-height: 100vh;
  font-family: Helvetica, sans-serif;
}

.nav-bar {
  padding-right: 30px;
  padding-top: 20px;
}

.nav-bar ul {
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.nav-bar a {
  color: black;
  text-decoration: none;
  font-size: 20px
}

.nav-bar a:hover {
  color: white;
} 

.contact-form {
  background-image: url("images/Conimage.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  border-radius: 20px;
  margin: 10px;
  padding-top: 50px;
}

.contact-form label {
  font-size: 25px;
  font-weight: bold;
}

.contact-form input {
  width: 40%;
  font-size: 20px;
  padding: 15px;
  border-radius: 10px;
}

input:invalid {
  border: 2px solid red;
}

input:valid {
  border: 2px solid black;
}

.contact-form textarea {
  width: 40%;
  height: 100px;
  font-size: 20px;
  padding: 20px;
  border-radius: 10px;
}

.con-sub-btn  {
  font-size: 20px;
  margin-bottom: 50px;
  border-radius: 10px;
  background-color: rgb(22, 99, 36);
  color: white;
}

.logo-image {
  width: 60px;
  height: 40px;
  padding:5px;
}

.footer-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media only screen and (max-width: 425px) {
  .nav-bar ul {
    flex-direction: column;
  }
}