@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap";

@font-face {
  font-family: Akira Expanded;
  src: url(/assets/Akira_Expanded-5b152fce.otf) format("opentype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000;
  color: #fff;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.container .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.content h1 {
  font-size: 58px;
  color: #fff;
  letter-spacing: .2em;
  text-shadow: 8px 10px 10px white;
  font-family: Akira Expanded, sans-serif;
  margin-bottom: 20px;
}

.content h4 {
  font-size: 26px;
  color: #fff;
  font-family: Akira Expanded, sans-serif;
  width: 80%;
  text-align: center;
  min-height: 50px;
}

.buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 1rem;
  gap: .5rem;
  width: 250px;
  cursor: pointer;
  transition: .3s;
}

.btn i {
  font-size: 2.5rem;
}

.btn a {
  text-decoration: none;
  color: #00f;
}

.btn h3 {
  font-family: Arial, Helvetica, sans-serif;
}

.btn:hover {
  box-shadow: 1px 1px #fff;
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 42px;
  }
  .content h4 {
    font-size: 22px;
  }
  .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .btn {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 32px;
  }
  .content h4 {
    font-size: 18px;
  }
  .btn {
    width: 100%;
  }
  .btn i {
    font-size: 3rem;
  }
  .buttons {
    flex-direction: column;
    width: 90%;
  }
}
