/* General reset and box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensuring the body and html elements occupy full height */
html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Flexbox container styling */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full height of the viewport */
    padding: 20px;
    text-align: center;
}

/* Image styling */
img {
    max-width: 90%;
    height: auto;
    margin-top: 20px;
}

/* Responsive typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1rem;
    }
}