body {
    margin: 0;
    padding: 0;
    background-color: #0a3525;
    color: #ffffff;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    text-align: center;
}

.logo {
    width: clamp(240px, 60%, 600px);
    margin-bottom: 1.2rem;
}

h2 {
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0.5rem 0 1.2rem;
    opacity: 0.9;
}

a {
    color: #b7e4c7;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.03em;
    font-size: 1.05rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

    a:hover {
        color: #ffffff;
        transform: scale(1.05);
    }

.fade-in {
    animation: fadeIn 1.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
footer {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #b7e4c7;
  opacity: 0.7;
}
