@font-face {
  font-family: Gordita;
  src: url(../fonts/Gordita/hinted-Gordita-RegularItalic.eot);
  src:
    url(../fonts/Gordita/hinted-Gordita-RegularItalic.eot?#iefix) format('embedded-opentype'),
    url(../fonts/Gordita/hinted-Gordita-RegularItalic.woff2) format('woff2'),
    url(../fonts/Gordita/hinted-Gordita-RegularItalic.woff) format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Gordita;
  src: url(../fonts/Gordita/hinted-Gordita-Regular.eot);
  src:
    url(../fonts/Gordita/hinted-Gordita-Regular.eot?#iefix) format('embedded-opentype'),
    url(../fonts/Gordita/hinted-Gordita-Regular.woff2) format('woff2'),
    url(../fonts/Gordita/hinted-Gordita-Regular.woff) format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gordita;
  src: url(../fonts/Gordita/hinted-Gordita-Medium.eot);
  src:
    url(../fonts/Gordita/hinted-Gordita-Medium.eot?#iefix) format('embedded-opentype'),
    url(../fonts/Gordita/hinted-Gordita-Medium.woff2) format('woff2'),
    url(../fonts/Gordita/hinted-Gordita-Medium.woff) format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gordita;
  src: url(../fonts/Gordita/hinted-Gordita-MediumItalic.eot);
  src:
    url(../fonts/Gordita/hinted-Gordita-MediumItalic.eot?#iefix) format('embedded-opentype'),
    url(../fonts/Gordita/hinted-Gordita-MediumItalic.woff2) format('woff2'),
    url(../fonts/Gordita/hinted-Gordita-MediumItalic.woff) format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

*,
body {
  font-family: 'Gordita';
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.content-box {
  display: flex;
  padding: 2.5rem 1rem 3rem 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  align-self: stretch;
  flex: 0 0 auto;
}
.logo {
  width: 9rem;
  height: 3rem;
}
.copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
}
.h1 {
  color: #222;
  font-family: Gordita;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.h2 {
  color: #222;
  font-family: Gordita;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.button {
  text-decoration: none;
  background: #222;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #fff;
  text-align: center;
  font-family: Gordita;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  cursor: pointer;
}
.btn-img {
  width: 1.21875rem;
  height: 1.3125rem;
  flex-shrink: 0;
}
.content-img {
  flex: 1 1 auto;
  display: flex;
  align-self: stretch;
  background-image: url('../../resources/img/cover.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 30rem;
  height: 100%;
  width: 100%;
}
.br {
  display: none;
}

@media (min-width: 768px) {
  #container {
    padding-left: 6rem;
    flex-direction: row;
  }
  .content-box {
    padding: 6rem 2rem 6rem 0;
    justify-content: center;
    flex: 1 0 0;
    gap: 3rem;
  }
  .h1 {
    font-size: 2.5rem;
  }
  .button {
    gap: 1.5rem;
  }
  .btn-img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .content-img {
    flex: 1;
    min-height: 100vh;
  }
  .br {
    display: block;
  }
}
