/* Загальні стилі */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 2rem;
}

.container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 900px;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

h1 {
    font-size: 2rem;
    color: #222;
    text-align: center;
}

p {
    font-size: 1rem;
    color: #555;
    text-align: center;
}

.meme-section {
    background: #e0e7ff;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.meme-section img {
    max-width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.meme-section img:hover {
    transform: scale(1.05);
}

/* Адаптивність */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}
