body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1f1f1f;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container img {
    max-width: 100%;
    height: auto;
}

.container p {
    margin-top: 20px;
    font-size: 1.5em;
}

.footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.footer a {
    color: #888;
    text-decoration: none;
}

.footer span {
    color: white;
}

@media (max-width: 600px) {
    .footer {
        position: static;
        margin-top: 20px;
    }
}
