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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3BADC0;
  background-image: url(pattern.svg);
  background-size: 300px 300px;
  font-family: 'Nunito', sans-serif;
}

.card {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 360px;
  width: 90%;
}

.logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 50%;
}

.tagline {
  font-size: 1rem;
  font-weight: 700;
  color: #3BADC0;
  letter-spacing: 0.02em;
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #f9a8d4, #c084fc);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(192, 132, 252, 0.4);
}

.socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 132, 252, 0.55);
}

.socials svg {
  width: 18px;
  height: 18px;
}
