body {
    background-color: rgb(194, 87, 0);
    font-family: Arial, sans-serif;
  }
  body{
    display: grid;
    min-height: 100vh;
    height: 100%;
  }
  header {
    position: fixed;
    width: 99%;
    background-color: #DF8B1E;
    animation: movedown 0.3s linear 1;
  }
  nav img {
    width: 50px; /* adjust the width as you want */
    height: auto;
    margin-right: 10px;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  nav li {
    padding: 10px;
    
  }
  .logo-container {
    margin-left: auto;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    text-align: right;
 
  }
  
  footer {
    position: grid;
    flex-shrink: 0;
    width: 100%;
    background-color: #ffa500;
    text-align: center;
    padding: 16px;
  }
  /*Animations*/
  @keyframes movedown {
0% {
    transform: translateY(-100px);
  
}
100%{
    transform: translateY(-0);
}

  }
  .fade-in {
    animation: fade-in 2s;
    opacity: 1;
  }
  
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
/*Contact*/
.contact-form {


  height:100%;
  background-color: #ffffff;
  padding: 60px;
  text-align: center;
  margin: 0 auto;
  max-width: 80%;
  justify-content: center;
  align-items: center;

}
form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

label, input, textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  box-sizing: border-box;
  font-size: 1.1em;
  border-radius: 5px;
}

input[type="submit"] {
  background-color: #ffa500;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 16px;
}

input[type="submit"]:hover {
  background-color: #ff9100;
}
