* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #fdf4ec;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.nav-header-left {
  display: flex;
  align-items: center;
}
.nav-header img {
  height: 20px;
  width: auto;
  padding-right: 10px;
}

.nav-header button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 5px 10px;
  margin: 0px 5px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.nav-header button:hover {
  background-color: #ee7b69;
  border: black 1px solid;
  color: white;
}

.nav-header-right {
  display: flex;
  align-items: center;
}

.nav-header .button-signin {
  border: black 1px solid;
}

.nav-header .button-signin:hover {
  box-shadow: 2px 2px black;
  transform: translate(-2px, -2px);
}

.nav-header .button-signup {
  background-color: #ee7b69;
  color: white;
}

.nav-header .button-signup:hover {
  box-shadow: 2px 2px black;
  transform: translate(-2px, -2px);
}

.nav-header select {
  background-color: transparent;
}

.banner-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
}

.banner-content-left {
  display: inline-block;
  width: 70%;
}

.banner-content-right {
  display: inline-block;
  width: 29%;
}

.banner-img {
  width: 100%;
  height: auto;
  max-width: 400px;
}

.banner-content-header {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #ee7b69;
}

.banner-content-subheader {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
}

.banner-content-description {
  font-size: 1em;
  margin-bottom: 20px;
  color: #666;
}

.banner-content-button {
  padding: 10px 24px;
  border-radius: 3px;
  background-color: #ee7b69;
  color: white;
  box-shadow: 2px 2px black;
  transform: translate(-2px, -2px);
  transition: all 0.3s ease-in-out;
}

.banner-content-button:hover {
  color: black;
  background-color: white;
}

.testimonials-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.testimonials-section-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: black 1px solid;
  width: 100%;
  background-color: #faefcf;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: white 10px 10px, black 10px 10px 0px 1px;
}

.testimonials-section-top h3 {
  margin-bottom: 20px;
}

.testimonials-section-bottom {
}
