body {
    margin: 0;
}
.minds-image {
    display: block;
    width: 100%;
    height: 100dvh;
    margin: 0;
    padding: 0;
}
.image-wrapper-desktop {
    display: block;
}
.image-wrapper-mobile {
    display: none;
}

@media (max-width: 640px) {
    .image-wrapper-desktop {
        display: none;
    }

    .image-wrapper-mobile {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .minds-image-mobile {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100dvh;
        height: 100vw;
        transform: translate(-50%, -50%) rotate(-90deg);
        transform-origin: center center;
    }
}
