body {
    background-color: #f0f0f0;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.meme-container {
    text-align: center;
    background-color: yellow;
    border: 5px solid red;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

h1 {
    font-size: 4em;
    color: red;
    text-shadow: 3px 3px 0 yellow, 6px 6px 0 blue;
}

p {
    font-size: 2em;
    color: green;
    text-shadow: 2px 2px 0 yellow;
}

img {
    width: 100%;
    height: auto;
    margin-top: 20px;
    border: 3px solid black;
    border-radius: 10px;
}
