@font-face {
  font-family: "FuturaND Bold";
  src: url("/assets/fonts/FuturaND-Bold.woff2") format("woff2"),
    url("/assets/fonts/FuturaND-Bold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

*::selection {
  color: #fff8e1;
  background: black;
}

.dekstop {
  display: block;
}

.mobile {
  display: none;
}

html {
  margin: 0;
  padding: 0;
  background: #fff8e1;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: "FuturaND Bold", Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100dvh;
  width: 100vw;
  padding: 2rem 0;
  box-sizing: border-box;
  font-weight: 500;
  background: #fff8e1;
}

p {
  margin: 0;
  width: 51vw;
  text-align: justify;
  text-align-last: justify;
}

a {
  color: black;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

.text {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  font-size: 1.35vw;
  letter-spacing: -0.05vw;
}

.gif {
  width: 21vw;
  margin: 1.3vw;
}

.logo {
  width: 43vw;
  height: auto;
}

@media screen and (max-width: 750px) {
  body {
    justify-content: space-between;
    padding: 2rem;
  }
  .dekstop {
    display: none;
  }

  .mobile {
    display: block;
  }

  body {
    font-size: 0.73rem;
    padding: 1.5rem;
  }
  .logo {
    width: 91.5vw;
  }
  .gif {
    width: 59vw;
  }
  .text {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 4.25vw;
    letter-spacing: -0.15vw;
  }
  p {
    width: 100%;
    margin: 0 0 7vw;
  }
  a:first-child {
    order: 1;
  }
}
@media screen and (min-width: 750px) and (max-width: 1000px) {
  body {
    justify-content: space-between;
    padding: 2rem;
  }
  .text {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 3.25vw;
    letter-spacing: -0.15vw;
  }
  .logo {
    width: 91.5vw;
  }
  .gif {
    width: 29vw;
  }
  p {
    width: 100%;
    margin: 0 0 5vw;
  }
  a:first-child {
    order: 1;
  }
}
