body {
    font-family: sans-serif;
    background: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    text-align: center;
}

.container {
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    max-width: 95%;
}

.meme-text {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.img-box {
    margin-top: 10px;
}

img {
    width: 100%;
    max-width: 900px; /* оригинальная ширина SVG */
    height: auto;
    display: block;
    margin: 0 auto;
}
