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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: white;
}

.contact-page {
  width: 100%;
  height: 100vh;

  background: #050505;
  color: white;

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

  padding: 50px;
  position: relative;
  overflow: hidden;
}

.contact-page h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -5px;

  margin-bottom: 45px;
  text-align: center;
}

.contact-grid {
  width: 100%;
  max-width: 1250px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.contact-card {
  height: 75px;

  border: 1px solid rgba(255,255,255,0.55);

  color: white;
  text-decoration: none;

  font-size: 1.4rem;
  letter-spacing: 4px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0px;

  transition: 0.3s ease;
}

.contact-card:hover {
  background: white;
  color: black;
}

.contact-message {
  margin-top: 38px;

  font-size: 1.2rem;
  letter-spacing: 4px;
  font-weight: 300;

  text-align: center;
}

.back-link {
  position: absolute;
  left: 50px;
  bottom: 50px;

  color: white;
  text-decoration: none;

  font-size: 1.3rem;
  letter-spacing: 5px;
  font-weight: 300;

  transition: 0.3s ease;
}

.back-link:hover {
  opacity: 0.55;
}

/* ANIMATIONS */

.animate {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media screen and (max-width: 900px) {
  .contact-page {
    height: auto;
    min-height: 100vh;
    padding: 35px 20px;
  }

  .contact-page h1 {
    font-size: 4rem;
    letter-spacing: -2px;
    margin-bottom: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    height: 95px;
    font-size: 1rem;
  }

  .contact-message {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }

  .back-link {
    position: static;
    margin-top: 35px;

    font-size: 1rem;
    letter-spacing: 4px;
  }
}