/* CSS Variables for colors */
:root {
  --mint-green: #E0FFF0;
  --pale-cyan: #B8E7E7;
  --pale-yellow: #FFFCAD;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(135deg, var(--mint-green) 12%, var(--pale-cyan) 60%, var(--pale-yellow) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}


.logo {
  max-width: 220px;
  max-height: 220px;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
