* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
body {
    position: relative;
    font-family: sans-serif;
    background-color: #f4f4f4;
}

.wrapper-image {
    display: flex;
    align-content: center;
    justify-content: center;
    background-color: #020101;
}

.desktop-img {
    height: 100vh;
    object-fit: cover;
}

.mobile-img {
    height: 100dvh;
    object-fit: cover;
}

/* MOVIL */
@media (max-width: 768px) {
    .desktop-img {
        display: none;
    }
}
/* TABLET  */
@media (min-width: 769px) and (max-width: 1024px) {

    .mobile-img {
        display: none;
    }
}
/* ESCRITORIO */
@media (min-width: 1025px) {
    .mobile-img {
        display: none;
    }
}