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

body {
  font-family: Nunito, sans-serif;

  background: linear-gradient(180deg, #ffffff, #faf8ff);

  height: 100vh;

  display: flex;

  justify-content: center;

  align-items: center;

  overflow: hidden;
}

.stars {
  position: fixed;
  width: 100%;
  height: 100%;

  background-image:
    radial-gradient(circle, #fff 1px, transparent 1px),
    radial-gradient(circle, #e9d6ff 1px, transparent 1px),
    radial-gradient(circle, #fff4c9 1px, transparent 1px);

  background-size:
    120px 120px,
    200px 200px,
    180px 180px;

  opacity: 0.5;

  animation: float 35s linear infinite;
}

@keyframes float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-150px);
  }
}

.card {
  width: 420px;

  background: rgba(255, 255, 255, 0.65);

  backdrop-filter: blur(18px);

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

  border-radius: 32px;

  padding: 45px;

  box-shadow: 0 20px 60px rgba(170, 150, 255, 0.2);

  text-align: center;

  position: relative;

  z-index: 10;
}

.logo {
  width: 340px;
  margin-bottom: 20px;
}

h1 {
  font-family: "Cormorant Garamond", serif;

  font-size: 48px;

  font-weight: 700;

  color: #6d4ea2;

  margin-bottom: 10px;
}

p {
  color: #6b6680;

  line-height: 1.6;

  margin-bottom: 35px;
}

.shop {
  display: block;

  padding: 18px;

  border-radius: 18px;

  text-decoration: none;

  font-weight: bold;

  transition: 0.35s;

  margin-bottom: 25px;
}

.shopee {
  background: linear-gradient(135deg, #ff8d3a, #ff5e00);

  color: white;

  font-size: 18px;

  box-shadow: 0 12px 30px rgba(255, 120, 30, 0.35);
}

.shopee:hover {
  transform: translateY(-4px) scale(1.03);
}

.socials {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

.socials a {
  text-decoration: none;

  color: #6d4ea2;

  padding: 15px;

  border-radius: 16px;

  background: white;

  transition: 0.3s;

  box-shadow: 0 8px 25px rgba(170, 150, 255, 0.12);

  font-weight: 600;
}

.socials a:hover {
  background: #efe7ff;

  transform: translateY(-3px);
}

footer {
  margin-top: 30px;

  font-size: 14px;

  color: #9f96b6;
}
