@font-face {
    font-family: 'Neue Montreal';
    src: url(./assets/fonts/NeueMontreal-Medium.otf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    width: 100%;
    height: 100vh;
    font-family: 'Neue Montreal';
}

nav{
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 2em;
}

.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;
}