@font-face {
  font-family: "GT Super";
  src: url(../fonts/gt-super-400-normal.woff);
}
@font-face {
  font-family: "Sohne";
  src: url(../fonts/sohne-400-normal.woff);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "sohne", sans-serif;
  background-color: rgb(247, 244, 237);
}

.container {
  max-width: 90%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  background-color: black;
  color: white;
  padding: 8px 12px;
  border-radius: 30px;
  border: none;
}

header {
  padding: 20px;
  border-bottom: 1px solid black;
  font-size: 14px;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  height: 30px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media screen and (max-width: 400px) {
  .weird-hidden {
    display: none;
  }
}
@media screen and (max-width: 720px) {
  .sm-hidden {
    display: none;
  }
}
main {
  background-image: url(../images/background.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 70vw;
}
main .container {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 40px;
}
main h1 {
  font-family: "GT Super", serif;
  font-size: calc(10vw + 7px);
  font-weight: 400;
  letter-spacing: -3px;
  line-height: 0.9;
}
main p {
  font-size: 22px;
}
main .btn {
  font-size: 22px;
}

footer {
  padding: 20px;
  border-top: 1px solid black;
}
footer nav {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media screen and (max-width: 900px) {
  main .btn {
    background: red;
  }
  footer {
    background-color: black;
    color: white;
  }
  footer nav {
    justify-content: start;
  }
  footer .lg-hidden {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
