body {
  background-color: #F0E7DA;
  margin: 0;
}

/* nav bar/header */

.nav-main {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #EC6C61;
  margin-top: .5rem;
  top: 0;
  left: 15%;
  width: 70%;
  border-radius: 1.5rem;
  z-index: 3;


}

#nav-logotype {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
}

#nav-logotype img {
  max-width: 1.5rem;
  height: auto;
}

#nav-logotype {
  color: white;
  margin: 0;
  margin-left: 2rem;
}

#nav-logotype h1 {
  font-family: "Manrope SemiBold", sans-serif;
  font-size: 1.2rem;
}


.nav-main li {
  display: inline-block;
  margin: 1rem;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.nav-main li a {
  font-family: 'Manrope Light', sans-serif;
  color: white;
  text-decoration: none;

  transition-duration: 0.3s;
  transition-property: color;
}

.nav-main li a:hover,
.nav-main li a:focus {
  color: #D2CFCF
}

/* picture */

#landing-head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

}

#home-bg-img {
  max-width: 100%;
  height: auto;
  z-index: 1;
}


#home-logo-img {
  position: absolute;
  top: 40%;
  width: 30%;
  height: auto;
  z-index: 2;

}

/* contact form */

#home-contact {
  width: 45%;
  margin: auto;

}

#home-contact h2 {
  font-family: "Instrument Serif", serif;
  font-weight: lighter;
  margin-bottom: 0;
  font-size: 6rem;

}

#home-contact p {
  font-family: "Instrument Sans", serif;
  font-size: 1.2rem;
  min-width: 12rem;

}

#home-contact-form {
  box-sizing: border-box;
}

#home-contact-form input[type=text] {
  font-family: "Manrope", sans-serif;
  background-color: #F0E7DA;
  width: 100%;
  padding: 1rem;
  margin: .5rem 0;
  border-radius: .5rem;
  border-width: 0.01rem;
  box-sizing: border-box;
}


#home-contact-form textarea {
  font-family: "Manrope", sans-serif;
  background-color: #F0E7DA;
  width: 100%;
  padding: 1rem;
  margin: .5rem 0;
  resize: none;
  border-radius: .5rem;
  border-width: 0.01rem;
  box-sizing: border-box;
}

#home-contact-form input[type=submit] {
  font-family: "Manrope", sans-serif;
  background-color: #EC6C61;
  color: white;
  padding: 1rem 2rem;
  margin: .5rem 0;
  border-radius: 5rem;
  border: none;
  box-sizing: border-box;
}



footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #EC6C61;
  padding: 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: flex;
  align-content: flex-start;
  flex-direction: column;
  margin-top: .2rem;
}


footer img {
  width: 40%;
  height: auto;
}

.footer-text {
  font-family: "Manrope", sans-serif;
  color: white;
  order: 2;

}

#footer-border {
  font-family: "Manrope", sans-serif;
  color: white;
  border-top: 1px solid white;
}

@media (max-width: 64rem) {
  .nav-main {
    left: 5%;
    width: 90%;
  }

  #home-contact {
    width: 70%;
  }
}

@media (max-width: 48rem) {
  .nav-main {
    flex-direction: row;
    left: 5%;
    width: 90%;
  }

  #nav-logotype h1 {
    display: none;
  }

  #nav-logotype img {
    width: 70%;
    height: auto;
  }

  .nav-main nav ul {
    padding: 0;
    margin: 0;
  }

  .nav-main li {
    font-size: smaller;
    margin: 0.5rem;
  }


  #home-logo-img {
    width: 50%;
  }

  #home-contact {
    width: 85%;
  }

  #home-contact h2 {
    font-size: 3rem;
  }

  /* Footer */
  footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }


  #footer-border {
    visibility: hidden;
  }

  footer img {
    width: 60%;
  }
}