*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: system-ui, -apple-system, sans-serif;
    color: #222;
    background-color: #f0f4f8;
    background-image:
        radial-gradient(1600px at 20% 30%, rgba(200, 220, 255, 0.35), transparent 100%),
        radial-gradient(1800px at 80% 70%, rgba(255, 220, 235, 0.3), transparent 100%),
        linear-gradient(135deg, #f6f8fc 0%, #e8ecf2 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


main {
    text-align: center;
    padding: 2rem;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    margin-top: 1rem;
    font-size: .7rem;
    letter-spacing: .3em;
    display: block;
    text-transform: uppercase;
}

footer {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    text-align: center;
    font-size: 0.5rem;
    color: #888;
    opacity: 0.5;

    a {
        color: inherit;
        text-decoration: none;

        &:hover {
            text-decoration: underline;
        }
    }

    ul {
        list-style: none;
        padding: 0;

        li {
            display: inline-block;
            margin-right: 0.625rem;

            &:last-child {
                margin-right: 0;
            }
        }
    }
}