#desktopview {
    display: flex;
    justify-content: center;
    align-items: center;
}

#mobileview {
    display: none;
}

.wrapper-mobile {
    display: none;
}



/* mobile and tab */
@media screen and (max-width:768px) {
    #mobileview {
        display: block;
    }

    #desktopview {
        display: none;
    }

    .wrapper-mobile {
        display: block;
    }

    .wrapper {
        display: none;
    }

    .home-dashboard-btn {
        max-width: 50%;
        margin-top: 1.5rem;
        margin-left: auto;
        margin-right: auto;
        flex-direction: column;
    }
    

}