/* Inicio */
html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Fuentes */
.faculty-glyphic-regular {
    font-family: "Faculty Glyphic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.fijo {
    position: fixed;
    top: 0;
    left: 0;           
    width: 100%;       
    background-color: black;
    padding-top: 15px;
    padding-bottom: 10px;
    z-index: 100;
    box-sizing: border-box;
}

.fijo > div {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.menu-link {
    font-size: 30px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.5s ease;
    cursor: pointer;
}

.menu-link:hover {
    color: #ac1919;
    font-size: 35px;
    transition: 0.5s;
}

.menu-link label {
    cursor: pointer;
}

@media (max-width: 768px) {
    .fijo > div {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .menu-link {
        font-size: 20px;
    }
    
    .menu-link:hover {
        font-size: 22px;
    }
    
    section[style*="position: absolute"] {
        position: relative !important;
        right: auto !important;
        margin-top: 10px !important;
    }
}