body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop {
    display: none;
}

.mobile,
.desktop {
    max-width: 100vw;
    max-height: 100vh;
}

.images{
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 1200px) {
    .mobile {
        display: none;
    }

    .desktop {
        display: block;
    }
}
