﻿.divApps {
    display: flex;
    flex-direction: row; /* make main axis horizontal (default setting) */
    justify-content: center; /* center items horizontally, in this case */
    align-items: center; /* center items vertically, in this case */
    height: 100vh;
}

.titleScan {
    font-size: 1.5rem;
}


.font-size {
    font-size: 1.2rem;
}

@media (max-width:500px) {
    .titleScan {
        font-size: 1.3rem;
    }

    .font-size {
        font-size: 1rem;
    }
}