body {
  background-color: #f9f8f2;
  padding: 0px;
  margin: 0px;
}

header {
  background-image: url(../img/header-background.svg);
  background-position: 0 0;
  background-size: 250px;
  padding-bottom: 3rem;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 2rem;
}

#header-logo {
  background-color: #f9f8f2;
  border-radius: 3rem;
  display: inline-block;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
}

#header-logo img {
  height: 3rem;
}

.header-title-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#header-title {
  background-color: #f9f8f2;
  border-radius: 2rem;
  color: #191919;
  margin-bottom: 4rem;
  margin-top: 4rem;
  overflow: hidden;
  padding-bottom: 0.25rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.25rem;
  font-family: Sohne-500, "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 600px;
}

.feature-title-text {
  color: #ff5c7a;
  display: inline-block;
  font-family: baskerville-urw, serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  opacity: 1;
  transform: translateY(0px);
  transition: cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 48rem) {
  header {
    background-image: url(../img/header-background.svg);
    background-position: 0 0;
    background-size: 250px;
    padding-bottom: 2rem;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 2rem;
  }

  #header-logo {
    border-radius: 2rem;
  }

  #header-logo img {
    height: 2rem;
  }

  #header-title {
    border-radius: 2rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
    padding-bottom: 0.25rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.25rem;
    font-size: 1.25rem;
    width: 100%;
  }

  .feature-title-text {
    font-size: 1.5rem;
  }
}
