*{
    box-sizing:border-box
}
body{
    margin:0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F0DFAD;
  height: 10vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  
}

#header-img{
    width:26vh;
    height:17vh;
    margin-left: 90px;
   
}
#nav-bar{
   display:flex;
   gap: 60px;
   margin-right: 90px;
}
.nav-link{
    text-decoration: none;
    color: black;
    font-size: 18px;
}
#heading-1{
    margin-top: 14vh;
    text-align: center;
}
#form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#email{
    width:300px;
    height: 6vh;
    border: 1px solid black;
    padding-left: 14px;
    border-radius: 3%;
}
#submit{
    background-color: #8F5C38;
    color: white;
    border: none;
    width: 300px;
    height: 5vh;
    margin-top: 16px;
    font-size: 16px;
    border-radius: 10px;
}

main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.nav-section {
  margin-bottom: 60px;
}


.feature {
  background-color: #f5f5f5;
  padding: 20px;
  margin-top: 20px;
  border-left: 4px solid #8B4513;
  border-radius: 5px;
}


.video-wrapper {
  max-width: 100%;
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  margin-top: 20px;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: none;
}


.contact-info {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
}

.contact-info a {
  color: #8B4513;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}


footer {
  background-color: #222;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #ccc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  .nav-section {
    padding: 0 10px;
  }

  .feature,
  .contact-info {
    padding: 15px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .video-wrapper {
    padding-bottom: 60%;
  }

  footer {
    font-size: 13px;
  }
}