* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

#grumble-image {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}