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

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

body, html {
  width: 100%;
  height: 100%;
  font-family: 'Quicksand', sans-serif;
  background-color: #ffe6e6;
  overflow: hidden;
  position: relative;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(135deg, #ffe6e6, #ffd6d6);
}

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  max-width: 600px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
}

.logo {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto 20px auto;
  animation: popIn 1s ease-in-out;
  object-fit: contain;
}
@media (max-width: 480px) {
  .logo {
    max-width: 120px;
  }
}

.title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #d14b4b;
  animation: fadeInUp 1.2s ease-in-out;
}

.subtitle {
  font-size: 1.1rem;
  color: #555;
  animation: fadeInUp 1.4s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.6rem;
  }
  .subtitle {
    font-size: 1rem;
  }
}

