@import url(https://fonts.googleapis.com/css2?family=Inter&display=swap);

*{
    font-family: Montserrat, sans-serif;
}

body{
    margin: 0;
    height: 100vh;
    width: 100vw;
}

.flex_style{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* SECCION BARRA DE NAVEGACION */

nav{
    height: 85px;
    background-color: #181D31;
}

.boton_index{
    margin-left: 20px;
    margin-top: -12px;
}

#compu1{
    animation-name: shadow;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

#compu2{    
    animation-name: shadow;
    animation-duration: 1.5s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes shadow {
    100%{
        transform: translateY(20px);
        opacity: 1;
    }        
}

ul{
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 25px;
    margin-right: 80px;
}

.estilo-boton{
    height: 35px;
    background-color: #E6DDC4;
    border-radius: 10px;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    box-shadow: 2px 3px #678983;
}

.estilo-boton:active{
    margin-top: 4px;
    box-shadow: 0 0;
}

a:link, a:visited {
    color: black;
    text-decoration: none;
}

header {
    height: 65vh;
    width: 100vw;
    background-image: url(../imagenes/codigo.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #eeeeee;
}

h1{
    font-size: 3.5rem;
    text-align: center;
    text-shadow: 2px 2px grey, 6px 6px black;
}

/* SECCION MAIN GENERAL */

h2{
    color: #678983;
    font-size: 2.5rem;
    padding: 20px;
    text-align: center;
    text-shadow: 2px 3px black;
}

/* SECCION FOOTER */

footer{
    background-color: #678983;
    color: #181D31;
    padding: 60px 40px;
}

.logo_footer{
    height: 80px;
}

.logo_titulo{
    width: 300px;
    height: 60px;
}

h3{
    font-size: 15px;
    text-align: center;
}