/*FONT*/
* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/*NAVBAR*/
nav-link {
    position: relative;
}

nav-link::after {
    content: '';
    opacity: 0;
    transition: all 0.2s;
    height: 2px;
    width: 100%;
    background-color: red;
    position: absolute;
    bottom: 0;
    left: 0;
}

nav-link:hover::after {
    opacity: 1;
}

#menu li>a {
    font-size: 18px;
    font-weight: bold;
    color: #3f3f3f;
}

#menu form>button {
    font-size: 18px;
    font-weight: bold;
}

/*CAROUSEL*/
.carousel-fade {
    background-color: black;
}

/*FORMULARI*/
#nomcognom {
    display: flex;
    gap: 10px;
}

/*PANTALLA*/

@media (max-width: 768px) {
    #intro {
        width: 90% !important;
    }
}