body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: black; 
    color: white; 
}

.container {
    text-align: center;
    width: 90%; 
    max-width: 600px; 
}

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

.social-links {
    margin-top: 20px;
    display: flex; 
    justify-content: center; 
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 2em; 
    color: white; 
}

.social-links a:hover {
    color: #f0f0f0; 
}

/* Media Queries для адаптации */
@media (max-width: 768px) { 
    img { 
        max-width: 100%; 
        height: auto; 
    }
}