/* Remove all browser defaults */
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Prevent scrolling */
html,
body {
    overflow: hidden;
}

/* Full-screen page */
body {
    background: #000;
}

/* Full-screen image */
.hero {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Make the image completely fill the browser window */
.hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}