/* =========================
   FONT CUSTOM
========================= */

@font-face {
  font-family: "Thirsty Rough";
  src: url("fonts/thirsty-rough-regular.eot");
  src:
    url("fonts/thirsty-rough-regular.eot?#iefix") format("embedded-opentype"),
    url("fonts/thirsty-rough-regular.woff") format("woff"),
    url("fonts/thirsty-rough-regular.ttf") format("truetype"),
    url("fonts/thirsty-rough-regular.svg#thirsty_roughregular_two")
      format("svg");
  font-weight: normal;
  font-style: normal;
}

/* =========================
   RESET
========================= */

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

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  background: #ffffff;
  color: #666;
}

/* =========================
   WRAPPER 100VH
========================= */

.wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =========================
   SECTION
========================= */

#home {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 24px;
}

#home h1 {
  font-family: "Thirsty Rough", serif;
  font-size: 1.6em;
  letter-spacing: 1px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#home h1::before {
  content: "";
  display: block;
  width: 260px;
  height: 260px;
  margin: 0 auto 40px;
  background-image: url("logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#home a {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
  font-weight: 700;
}

#home a:hover {
  color: #8fccc2;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1023px) {
  #home h1::before {
    width: 200;
    height: 200px;
  }
}

@media only screen and (max-width: 1281px) {
  #home h1::before {
    height: 240px;
    width: 240px;
  }
}
@media only screen and (max-width: 767px) {
  #home h1::before {
    height: 160px;
    width: 160px;
    margin: 0 auto 30px;
  }
}

@media only screen and (max-width: 479px) {
  #home h1::before {
    height: 140px;
    width: 140px;
    margin: 0 auto 20px;
  }

  #home h1 {
    font-size: 1.5em;
  }
}
