@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}





/* MEU CSS */
*::-webkit-scrollbar {
    display: none;
}

#nav {
    position: fixed;
}

#logo {
    height: 50px;
}

main {
    overflow-y: scroll;

}

@media (max-width: 560px) {
    #barra-lateral {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 70px;
        flex-direction: row;

        justify-content: space-around;
    }

    #container_cursos {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }


    .curso-description {
        display: none;
    }

    .curso-card {
        height: 140px;
    }
}


#container_cursos {
    padding-top: 105px;
    padding-bottom: 80px;
}