body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, sans-serif;
    color: #fff;
    line-height: 1.5;
}

.title {
    position: relative;
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.title h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
}

a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.background {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: #000;
}

.background .stars {
    position: absolute;
    inset: 0;
    height: calc(100vh + 5000px);
    will-change: transform;
}

.background .stars.stars1 {
    background-image: url(../img/stars1.webp);
    opacity: 0.1;
    animation: stars 300s linear infinite;
}

.background .stars.stars2 {
    background-image: url(../img/stars2.webp);
    opacity: 0.2;
    animation: stars 150s linear infinite;
}

.background .gradient {
    height: 100vh;
    background: linear-gradient(135deg, transparent, hsla(10, 15%, 95%, 0.2));
}

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

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