html {
  scroll-behavior: smooth;
  scroll-padding: 130px;
  font-family: 'Raleway', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  background-color: linen;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid #828e8c;
  padding-bottom: 5px;
  
}

.logo > img {
  width: 100%;
  height: 100%;
  min-width: 100px;
  max-width: 100px;
  min-height: 100px;
  max-height: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin-left: 20px;
}

#nav-bar {
  width: 100%;
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
}
nav > ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style-type: none;
  align-items: center;
  gap: 40px;
  padding-right: 20px;
}

.nav-title {
  margin-right: auto;
  font-size: 2.5rem;
  color: #828e8c
}
.nav-style {
  font-size: 1.6rem;
}
.nav-style a:hover {
  color: #e88
}
.nav-style a {
  color: #828e8c;
  text-decoration: none;
}
@media (max-width: 950px) {
  .nav-link {
    font-size: 1.4rem;
  }
  nav > ul {
    gap: 10px;
    align-items: flex-end;
  }
  .nav-link a:hover {
  color: #e88;
  }
}

@media (max-width: 768px) {
  .nav-link {
    font-size: 1.3rem;
  }
  .main-content {
    margin-top: 130px !important;
  }
  html {
    scroll-padding: 160px !important;
  }
  @media (max-width: 738px) {
    .main-content {
      margin-top: 160px !important;
    }
    html {
      scroll-padding: 160px !important;
    }
    .form-text {
      width: 70vw;
    }
    #video {
      height: 50vw !important;
      width: 75vw !important;
    }
  }
  @media (max-width: 498px) {
    .main-content {
      margin-top: 205px !important;
    }
    html {
      scroll-padding: 205px !important;
    }
    .quote {
      font-size: 1.2rem !important;
    }
  }
}
@media (max-width: 401px) {
  .main-content {
    margin-top: 240px !important;
  }
  html {
    scroll-padding: 240px !important;
  }
  .quote {
    font-size: 1rem !important;
  }
  #email {
    font-size: 0.7em !important;
    padding: 0 !important;
  }
}

hr {
  margin: 20px auto;
  border: 1px solid #828e8c;
  width: 85%;
  max-width: 1000px;
  
}

.quotes {
  display: grid;
  margin: 20px auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1em
}

.quote {
  margin: 10px;
  font-style: italic;
  font-size: 1.3rem;
  color: #e88;
  font-weight: 600;
}
#our-story {
  text-align: center;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 20px;
}
#rompers {
  text-align: center;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 20px;
}
#testimonials {
  text-align: center;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 20px;
}
#feedback {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  padding: 0 20px;
}
#video-link {
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
  padding: 0 20px;
}
.romper-images {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
  padding: 5px;
  justify-content: space-around;
}
.romper-img {
  margin: 5px;
  min-width: 200px;
  width: 300px;
  border-radius: 10%;
  border: 10px solid linen;
}


.main-content {
  margin-top: 130px;
  color: #828e8c;
  font-size: 1.1rem;
}

h2 {
  color: #e88;
  font-size: 1.9rem;
}

.form-text {
  border: 8px solid linen;
  border-radius: 10px;
  margin: 0 auto;
  margin-bottom: 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.1em;
  color: #828e8c;
  max-width: 500px;
  max-height: 300px;
  min-width: 250px;
  min-height: 100px;
  padding: 5px;
}
.form-text:focus {
  outline: none;
}
::placeholder {
  text-align: center;
}

#email {
  display: block;
  margin: 15px auto;
  border: 5px solid linen;
  border-radius: 10px;
  padding: 5px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9em;
  font-style: italic;
  height: 38px;
  width: 65vw;
  max-width: 400px;
  text-align: center;
}
#email:focus {
  outline: none;
}

.submit-button {
  width: 200px;
  height: 35px;
  font-family: 'Raleway', sans-serif;
  font-size: 1em;
  color: #828e8c;
  border: 5px solid linen;
  border-radius: 10px;
  background-color: white;
}
.submit-button:hover {
  background-color: #e88;
  color: linen;
}
#video {
  margin: 40px auto;
  height: 300px;
  width: 70vw;
  max-width: 500px;
  border: 4px solid #e88;
  border-radius: 10px;
}
