@charset "utf-8";

@font-face {
    font-family: 'system-ui';
    src: url(../fuentes/system-ui);
}


body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a {
    text-decoration: none;
    color: #230c33;
}

p {
    color: #230c33;
    font-weight: 500;
}

.linkalumnas {
    display: flex;
    justify-content: center;
    background-color: #592e83;
    color: aliceblue;
    font-weight: 1000;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 0.5em;
    padding: 1em;
    text-transform: uppercase;
}

header {
    background-color: #caa8f5;
    padding: 2em 0 1em 2em;
    position: sticky;
    top: 0;
}

header .contenedora {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1em;

}

header .contenedora #menu {
    display: inline;
}

nav {
    position: fixed;
    justify-content: center;
    z-index: 100000;
}

.menu-btn,
.menu-fondo {
    background: #592e83;
    border-radius: 10%;
    padding: 0.50rem;
    width: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease-out;
    position: fixed;
    top: 3.5em;
    right: 2em;
    z-index: 9998;
}

.menuVisible .menu-fondo {
    background: #592e83;
    width: 100vw;
    height: 200vw;
    border-radius: 0em;
    opacity: 90%;
    inset: 0vw 0vw auto auto;
}

.menu-btn .btn-linea {
    width: 25px;
    height: 3px;
    margin: 4px 0 4px 0;
    background: aliceblue;
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 9999;
}

nav ul li{
    list-style: none;
}

nav ul {
    width: auto;
    height: auto;
    display: block;
    position: fixed;
    z-index: 9999;
    padding: 0;
    transition: all .5s ease;
    text-align: center;
    opacity: 0;
    visibility: hidden;
}

.menuVisible ul {
    visibility: visible;
    opacity: 100%;
    transition: all .5s .2s ease;
    text-align: left;
}

nav ul li a {
    list-style: none;
    color: aliceblue;
    display: block;
    width: auto;
    margin: -0.5rem;
    font-size: 1.2em;
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 1rem;
    text-transform: uppercase;
    position: relative;
    z-index: 9999;
    font-weight: 800;
}

nav ul li a:hover {
    transition: all .3s;
}

.contenedora {
    padding: 1rem;
    max-width: 60em;
    margin-inline: auto;
}

h3.contenedora {
    margin: 2em 0 0 1.5em;
    padding: 0;
    font-size: 1.5em;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    border: 0;
    outline: none;
}

#logo h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    margin: 0;
    color: #230c33;
    font-size: 1rem;
    padding: 0;
}

div#logo {
    width: 10em;
}

#logo {
    align-items: center;
}

.galeria img {
    object-fit: cover;
    object-position: left center;
    width: 100%;
}

.imagenes {
    margin: 1em 2em 2em 2em;
}

::marker {
    color: aliceblue;
}

.webapp {
    margin: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    max-width: 100%;
    height: auto;
}

.plan img {
    padding: 0 1em 0 0;
}

footer {
    background-color: #caa8f5;
    text-align: center;
}

@media (min-width:870px) {

    .imagenes {
        display: flex;
        justify-content: center;
        padding: 0 2em 1em 2em;
        gap: 1em;
        margin-top: 0;
    }

    .alumnas {
        width: 100%;
        padding: 1em;
    }

    .alumnas p {
        font-size: 1em;

    }

    h3.contenedora {
        margin: 3em 0 0 3.5em;

    }

    
    header nav ul {
        display: flex;
        justify-content: center;
        position: relative;
        opacity: 1;
        visibility: visible;
    }

    header div.contenedor {
        margin-inline: 4em;
        display: flex;
        flex-direction: row;
    }

}

@media (min-width:1000px) {

    .menu-btn {
        opacity: 0;
    }

    ul.menu {
        opacity: 100%;
        visibility: visible;
        list-style: none;
        display: flex;
        font-size: 0.7em;
        position: fixed;
        right: 0;
        margin: 2em 7em 0 0;
        gap: 0.5em;

    }

    nav ul li a {
        position: relative;
        color: #230c33;
    }

}