body {
  font-family: 'Martel', serif;
  font-weight: 300;
  color: #525a5d;
  background-color: #f5efe3;
}

a:link,
a:visited {
  color: #525a5d;
}

a:hover,
a:focus,
a:active {
  color: #a6aa9c;
  text-decoration: none;
}

ul {
  list-style-type: none;
}

input {
  width: 100%;
  height: 2rem;
}

button {
  background-color: #a8b59e;
  color: #525a5d;
  font-weight: 600;
  width: 12rem;
  height: 3rem;
  border: none;
  border-radius: 50px;
  font-family: 'Roboto Flex', sans-serif;
}

button:hover,
button:focus,
button:active {
  color: #f5efe3;
}

h2 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}

#header {
  font-family: 'Roboto Flex', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #525a5d;
  background-color: #f4e3d3;
  font-weight: 400;
}

#header #logo {
  margin-left: 1rem;
}

#header #menu-mobile {
  margin-right: 1rem;
}

#header #menu-desktop {
  display: none;
}

#landing-page {
  background-color: #f4e3d3;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#landing-page--content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  justify-content: center;
  background-color:rgba(245, 239, 227, 0.54);

}

#landing-page--content--main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  text-align: center;
  margin: 0 1.5rem;
  font-size: 1.75rem;
}

#landing-page--content--main span {
  font-size: 1.3rem;
}

#landing-page--content--sub {
  text-align: center;
  padding-top: 2vh;
  margin: 0 1.5rem;
  font-size: 1.1rem;
}

#landing-page--content a {
  margin-top: 1.5rem;
}

#services img {
  width: 100%;
  padding-top: 1rem;
}

#services li {
  margin-top: 1.5rem;
  padding-right: 1.5rem;
}

.services--cta {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  padding: 0 1rem;
}

#services a {
  text-decoration: underline;
}

#services--portraits {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#services--maternity {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 300px;
  text-align: center;
}

#contacts h2 {
  margin-top: 2rem;
}

label {
  display: block;
}

#back-to-top {
  display: none;
  position: fixed;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 90;
  border: none;
  outline: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 2.5rem;
}

#menu-mobile--navigation {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(var(--vh, 1vh)*100);
  z-index: 99;
  background-color: #f5efe3;
}

#menu-mobile--navigation div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

#menu-mobile--navigation--top {
  width: 100%;
  height: 10vh;
  border-bottom: 1px solid #5f5f5f;
}

#menu-mobile--navigation div a {
  font-size: 2rem;
}

#menu-mobile--navigation div span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 15vh;
  border-bottom: 1px solid #5f5f5f;
}

#menu-mobile--icon {
  color: #5f5f5f;
  font-size: 1.25rem;
}

#menu-mobile--icon--container {
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  border-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#menu-mobile--icon--close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #5f5f5f;
  font-size: 1.75rem;
}

#about-me {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin: auto;
}

#about-me--photo {
  margin-top: 1.5rem;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

#about-me--title {
  margin-bottom: 0;
  margin-top: 1rem;
}

#biography {
  margin: 2rem 1rem;
  margin-bottom: 2rem;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  #header #logo {
    flex: 3;
    margin-left: 3rem;
  }

  #header #menu-mobile {
    display: none;
  }

  #header #menu-desktop {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 1rem;
    font-size: 1.25rem;
  }

  #landing-page--content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 22vh 0;
    width: 80%;
    background-color:rgba(245, 239, 227, 0.54);
  }

  #landing-page--content--main {
    margin: 0 1.5rem;
  }

  #landing-page--content--sub {
    text-align: center;
    padding-top: 4vh;
    margin: 0 1.5rem;
  }

  #landing-page--content a {
    margin-top: 2.5rem;
  }

  #contacts {
    justify-content: flex-start;
  }

  input {
    width: 30rem;
  }

  textarea {
    width: 30rem;
  }

  #submit {
    margin-left: 9rem;
  }

  #services {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  #services img {
    width: 35%;
  }

  .services--cta {
    font-size: 1.5rem;
  }

  #services--portraits {
    width: 80%;
    align-items: flex-start;
  }

  #services--portraits h2 {
    padding-left: 12.5rem;
  }

  #services--portraits--content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  #services--maternity {
    margin-top: 5rem;
    width: 80%;
    align-items: flex-end;
  }

  #services--maternity img {
    order: 2;
  }

  #services--maternity h2 {
    padding-right: 11rem;
  }

  #services--maternity--content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    order: 1;
  }

  #about-me {
    margin-top: 5rem;
  }
}
