body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #e0e0e0;
    font-family: "Courier New", Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

img.logo {
    width: 256px;
    height: auto;
    image-rendering: pixelated;
    animation: fadeIn 2s ease-out, float 6s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        filter: blur(5px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

a {
    color: #888888;
    text-decoration: none;
    font-size: 0.9em;
    animation: fadeIn 2s ease-out, float 6s ease-in-out infinite;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.quote {
    font-style: italic;
    font-size: 1.1em;
    color: #aaaaaa;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-out, float 6s ease-in-out infinite;
}
