@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #f9f9f9;
  color: #333;
  overflow-y: hidden;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 1rem;
}

.card {
  background: #fff;
  padding: 2.5rem 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeZoomIn 0.8s ease forwards;
}

@keyframes fadeZoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.card h1 {
  margin: 0 0 0.5rem;
  font-size: 4rem;
  font-weight: 800;
  color: #222;
}

.slogan {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
}

.contacts {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.contacts a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ea178c;
  color: #fff;
  font-size: 1.6rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.contacts a:hover {
  background: #c01575;
  transform: scale(1.1);
}

.company-number {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}

@media (max-width: 480px) {
  .card h1 {
    font-size: 2.5rem;
  }

  .contacts a {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}
