@font-face {
    src: url("../fonts/MADE TOMMY Regular_PERSONAL USE.otf");
    font-family: 'Tommy';
}

*{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#flag{
    position: fixed;
    right: 20px;
    top: 0;
    max-width: max-content;
}


.custom-select {
    max-width: max-content;
    img{
        max-width: 50px;
        cursor: pointer;
    }
}

.options{
    width: 100%;
    display: none;
}

.custom-option {
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    img{
        max-width: 30px;
    }
    p{
        font-size: 0.8em;
    }
    &:hover{
        background-color: rgba(243, 244, 245, 0.95);
    }
}

.custom-select:hover {
    cursor: pointer;
}


.flexContainer{
    display: flex;
}

.rightContainer{
    font-family: "Tommy";
    position: absolute;
    left: calc(15vw + 80px + 14px);
    width: 75vw;
    grid-area: content;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.rightContainer > *{
    margin-left: 100px;
    width: 100%;
    height: max-content;
}

header {
    background-color: rgba(243, 244, 245, 0.95);
    position: fixed;
    top: 0;
    z-index: 2;
    height: 100vh;
    width: 15vw;
    padding: 0 14px;
    left: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav a{
    text-decoration: none;
    color: black;
    &:hover{
        color: #115683;
    }
}

nav ul{
    font-family: "Courier New", monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    li{
        margin-top: 5px;
    }
}


nav img{
    max-width: 10vw;
}

main {
    overflow: hidden;
    margin-top: 250px;
    h1{
        font-size: 4em;
    }
    #bienvenida{
        margin-top: 20px;
        font-size: 1.5em;
        margin-bottom: 5px;
    }
    #descripcion{
        width: 50%;
        margin-top: 30px;
    }
    #extrainfo{
        margin-top: 20px;
        font-weight: bold;
        font-size: 1.3em;
    }
    #contenedorPracticas{
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        height: max-content;
        .practicas{
            width: 20%;
            height: 350px;
            background-color: #f4f5f5;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            .texto{
                margin-top: 20px;
                height: 150px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: space-around;
            }
            img{
                max-width: 100%;
            }
            div{
                overflow: visible;
                display: flex;
                gap: 10px;
            }
        }
    }
}

h2{
    margin-top: 400px;
    font-size: 4em;
}

.curriculum {
    text-decoration: none;
    color: black;
    margin-top: 20px;
    width: 9em;
    height: 3em;
    border-radius: 30em;
    font-size: 15px;
    font-family: inherit;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 6px 6px 12px #c5c5c5,
    -6px -6px 12px #ffffff;
    transition: .5s;
}

.curriculum::before {
    content: '';
    width: 0;
    height: 3em;
    border-radius: 30em;
    position: absolute;
    top: 0;
    left: 0;
    transition: .5s ease;
    display: block;
    z-index: -1;
}

.curriculum:hover {
    cursor: pointer;
}

.redes{
    margin-top: 20px;
    position: relative;
    display: flex;
    gap: 20px;
    overflow: visible;
}

.rrssbutton{
    width: 3em;
    height: 3em;
    border-radius: 50%;
    border: 0;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: .5s ease;
    i{
        font-size: 2em;
        overflow: hidden;
    }
    &:hover{
        background-color: #ceced5;
    }
}




footer {

}