@media (min-width: 640px) and (max-width: 800px)
{
    .desktop {
        display: none;
    }

    .mobile {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}


