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

html, body {
    width: 100%;
    height: 100vh;
    font-family: "Timmons NY", sans-serif;
}

nav, footer {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1em;
    text-transform: uppercase;
    font-size: 30px;
}

nav {
    top: 0;
}

footer {
    bottom: 0;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 100px;
    background: #b0b0b0;
    margin: 10px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}