body {
    background-color: rgb(194, 87, 0);
    font-family: Arial, sans-serif;
  }
  body {
    display: flex;
    flex-wrap: wrap;
    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;
 
  }
  
  main {
    flex: 1;
    height:25%;
    padding: 20px;
    
  }
  .text-box {
    height:100%;
    background-color: white;
    padding: 60px;
    text-align: center;
    margin: 0 auto;
    max-width: 80%;
  }
  
  h1 {
    color: rgb(0, 0, 0);
  }
  .text {
    font-size: x-large;
  }
.logo-about {
    display: block;
    margin-left: auto;
}
  .WWA {
    height:25%;
    padding: 20px;
  }
  .text-box2 {
    height:100%;
    background-color: rgb(165, 0, 0);
    padding: 60px;
    text-align: left;
    margin: 0 auto;
    max-width: 80%;
  }
  .header2 {
    text-align: left;
    color: rgb(255, 255, 255);
  }
  .text2 {
    color: rgb(255, 255, 255);
    font-size: x-large;
  }
  .WWHY {
    height:25%;
    padding: 20px;
  }
  .text-box3 {
    height:100%;
    background-color: #DF8B1E;
    padding: 60px;
    text-align: right;
    margin: 0 auto;
    max-width: 80%;
  }
  .text3 {
    
    font-size: x-large;
  }
  .header3 {
    color: rgb(0, 0, 0);
    text-align: right;
  }
  .WU {
    height:25%;
    padding: 20px;
  }
  .text-box4 {
    height:80%;
    background-color: #df1e1e;
    padding: 60px;
    text-align: center;
    margin: 0 auto;
    max-width: 80%;
  }
  .text4 {
    
    font-size: x-large;
  }
  .header4 {
    color: rgb(0, 0, 0);
    text-align: center;
  }
  footer {
    position: flex;
    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%;
  

}
form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
     height:100%;
    background-color: white;
    padding: 60px;
    text-align: center;
    margin: 0 auto;
    max-width: 80%;
}

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;
}
