@font-face {
  font-family: "Satoshi";
  src: url(../public/Satoshi-Variable.ttf);
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
  overflow: hidden;
}

body {
  background: radial-gradient(circle at top, #0f1720, #05080c);
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.bg-logo {
  position: absolute;
  width: 500px;
  opacity: 0.15;
  z-index: 0;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.75);
  }
  100% {
    transform: scale(1);
  }
}

.container {
  text-align: center;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

h1 {
  font-size: 4.5rem;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #00f0ff, #00ffa6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 3s infinite alternate;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 5px #00f0ff;
  }
  50% {
    text-shadow: 0 0 50px #00ffbf;
  }
  100% {
    text-shadow: 0 0 5px #00f0ff;
  }
}

.slogan {
  margin-top: 15px;
  font-size: 2rem;
  color: #aaa;
  letter-spacing: 1px;
}

.slogan2 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 2rem;
  color: #aaa;
}

.slogan3 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #aaa;
  letter-spacing: 1px;
}

.socials {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.socials img {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

footer {
  position: absolute;
  bottom: 20px;
  font-size: 1.5rem;
  color: #7e7d7d;
}

@media (max-width: 600px) {
  * {
    font-size: 75%;
  }
  h1 {
    font-size: 3.5rem;
  }
  .bg-logo {
    width: 350px;
  }
}
