/* style.css */

@keyframes fadeInOnce {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.fade-text {
    opacity: 0;
    animation: fadeInOnce 1.5s ease-in-out forwards;
    animation-iteration-count: 1;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(ellipse at center, #3C4048 0%, #2A2D33 40%, #1F2227 70%, #181B20 100%);
    font-family: "Heiti SC Light", "Heiti SC", Tahoma, Geneva, Verdana, sans-serif;
    color: #37BDEE;
}

.container {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

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

h1 {
    font-weight: 300;
    font-size: 1.8rem;
    letter-spacing: 1px;
}
