body {
    background-color: #2c2c2c;
    margin: 0;
    padding: 20px; /* Added padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    box-sizing: border-box; /* Include padding in height */
}

h1 {
    color: white;
    font-size: 5vw; /* Responsive font size */
    text-align: center; /* Center text */
}

img {
    max-width: 100%; /* Prevent overflow */
    width: 90%; /* Base width */
    height: auto;
    display: block;
    margin: 20px 0; /* Add margin for spacing */
}

@media only screen and (min-width: 768px) {
    img {
        width: 50%; /* Adjusted for tablet */
    }

    h1 {
        font-size: 4vw; /* Slightly smaller font for larger screens */
    }
}

@media only screen and (min-width: 1080px) {
    img {
        width: 28%; /* Adjusted for desktop */
    }

    h1 {
        font-size: 2vw; /* Smaller font for large screens */
    }
}
