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

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

body {
  font-family: Arial, sans-serif;
}

.hero {
  width: 100vw;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url('background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.logo {
  width: min(58vw, 640px);
  max-width: 85%;
  height: auto;

  user-select: none;
  -webkit-user-drag: none;
}

.motto {
  color: white;

  font-size: clamp(0.8rem, 1.2vw, 1rem);

  letter-spacing: 0.45rem;
  text-transform: uppercase;
  text-align: center;

  opacity: 0.9;

  user-select: none;
}

.socials {
  display: flex;
  gap: 1.25rem;
}

.socials a {
  color: white;
  font-size: clamp(1.2rem, 2vw, 1.6rem);

  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  opacity: 1;
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .content {
    gap: 1.8rem;
    padding: 1.5rem;
  }

  .logo {
    width: 88vw;
    max-width: 520px;
  }

  .motto {
    font-size: 0.72rem;

    letter-spacing: 0.22rem;
    line-height: 1.6;

    text-align: center;

    padding: 0 1rem;

    max-width: 95vw;
  }

  .socials {
    gap: 1.25rem;
  }

  .socials a {
    font-size: 1.35rem;
  }
}