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

html,
body {
    width: 100%;
    height: 100%;
    background: #000;
}

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

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.copyright {
    position: absolute;
    left: 50%;
    bottom: max(10px, env(safe-area-inset-bottom));
    transform: translateX(-50%);
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.42);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-shadow: 0 1px 5px #000;
}

/* Upright phones: show the entire image */
@media (orientation: portrait) {
    .hero img {
        width: 100%;
        height: auto;
        max-height: 100svh;
        object-fit: contain;
    }
}
