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

body {
    min-height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

/* For landscape orientation (width >= height) */
@media (min-aspect-ratio: 1/1) {
    img {
        width: auto;
        height: 50vh;
    }
}

/* For portrait orientation (height > width) */
@media (max-aspect-ratio: 1/1) {
    img {
        width: 50vw;
        height: auto;
    }
} 