body {
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 0;
    margin: 0;
}

div {
    background: #828282;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0;
    margin: 0;
    overflow: hidden;
    object-fit: cover;
}

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

.menuMobile,
.mobile {
    display: none;
    transition: all 1s ease;
}

.desktop {
    display: initial;
}

@media only screen and (max-width: 1023px) {
    .menuMobile,
    .mobile {
        display: block;
        transition: all 1s ease;
    }
    .desktop {
        display: none;
    }
}