#welcome .title {
  color: var(--white-ter);
  font-family: "Gotham Bold", sans-serif;
  font-size: 45px;
  margin-bottom: 0px;
}

#welcome .try-on_button-text {
  margin-bottom: 0;
}

#welcome .image {
  width: 330px;
  height: 335px;
  margin: 0px;
}

#welcome .resources .text {
  color: var(--black-bis);
  font-family: "Gotham Book Regular", sans-serif;
  font-size: 10px;
  line-height: 10px;
  margin: 0;
}

#welcome .resources .title {
  color: var(--black-bis);
  font-family: "Gotham Book Regular", sans-serif;
  font-size: 23px;
  font-weight: bold;
  line-height: 26px;
  margin: 0;
}

#welcome .resources {
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  #welcome .content {
    display: grid;
    grid-template-areas:
        "image text"
        "image buttons";
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
  }

  #welcome .resources {
    flex-direction: row;
  }

  #welcome .content .image {
    grid-area: image;
    height: auto;
    width: 100%;
  }

  #welcome .content .title {
    grid-area: text;
    margin-top: 0;
  }

  #welcome .content .resources {
    grid-area: buttons;
  }
}

@media only screen and (min-width: 1024px) {
  #welcome {
    max-width: 1200px;
    margin: 0 auto;
  }

  #welcome .title {
    font-size: 64px;
  }

  #welcome .content {
    max-width: 950px;
  }
}
