*{
    box-sizing: border-box;
}

body, html{
    margin: 0;
    padding: 0;
}

.titulo{
    color: orange;
    text-shadow: 2px 2px 4px #000000;
}

#inicio{
    height: 100%;
    width: 100%;
}

#inicio main div a{
    background-color: black;
    color: white;
}

#inicio main div a:hover{
    background-color: orange;
    color: black;
}

.navbar-nav .nav-link {
    color: white !important;
}

.navbar-nav .nav-link:hover {
    color: orange !important;
}

#sobre_mi{
    height: 100vh;
}

#mis_proyectos{
    min-height: 80vh;
    width: 100vw;
}

#mis_proyectos .mis_proyectos-contenedor div {
    transition: scale 0.2s linear;
}

#mis_proyectos .mis_proyectos-contenedor div:hover{
    scale: 1.05;
}

#experiencia div .lista_experiencias{
    flex-direction: column;
    gap: 2rem;
}

#experiencia div .lista_experiencias li{
    border-style: solid;
    border-width: 2px;
    border-radius: 0.5rem;
    padding: 1.5rem;

    border-color: orange;
}

#contacto{
    min-height: 100vh;
    width: 100vw;
}

footer{
    min-height: 15vh;
    background-color: black;
    color: white;
}

@media screen and (max-width: 780px){
    #contacto .lista_contacto{
        flex-direction: column;
    }
    
    #contacto .formulario .form_google iframe{
        width: 380px;
    }
}

@media screen and (max-width: 450px){
    #contacto .formulario .form_google iframe{
        width: 320px;
    }
}

/* ANIMACIONES */

@keyframes movimientoCard{
    from {scale: 1;}
    to {scale: 1.1;}
}