:root {
    --accent: #2f00a4;
    --bg-light: #fff;
    --bg: #f1f1ff;
    --bg-dark: #eaeaff;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    flex-direction: column;
    text-align: center;
    animation: fadeIn 1.2s ease-out;
}

img {
    width: 160px;
    height: auto;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
    color: var(--accent);
}

p {
    max-width: 400px;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
}

a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

footer {
    position: absolute;
    bottom: 1.5rem;
    font-size: 0.9rem;
    color: #777;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}