* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    padding: 16px;
}

.image-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
    body {
        align-items: flex-start;
        padding-top: 40px;
    }

    .image-container {
        max-width: 100%;
    }
}

