@font-face {
    font-family: 'OTF Glusp';
    src: url(./assets/fonts/OTF®\ Glusp.ttf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    background: #131313;
    padding: 4em;
    overflow: hidden;
}

.menu__item{
    width: max-content;
}

.menu__item-image_wrapper{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 600px;
    height: 400px;
    pointer-events: none;
    opacity: 0;
}

.menu__item-image_inner .menu__item-image{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 90% 30%;
}

.menu__item-text{
    position: relative;
    font-family: 'OTF Glusp';
    font-weight: 700;
    text-transform: uppercase;
    font-size: 5vw;
    line-height: 1;
    color: #e6e3d8;
    opacity: 1;
    transition: opacity 350ms ease;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

.menu__item:hover .menu__item-text {
    color:#c24628;
}

.menu__item:hover .menu__item-image_wrapper{
    z-index: -2;
}