html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: black;
}

body {
    min-height: 100svh;
}

.image-container {
    width: 100%;
    height: 100svh;
}

.image-container picture,
.image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.image-container img {
    object-fit: cover;
    object-position: center;

    opacity: 0;
    transform: scale(1.05);
    animation: fadeZoom 2s ease-out forwards;
}

@keyframes fadeZoom {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
