@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
}

body{
    height: 100vh;
    width: 100vw;
}


/* perfil */

.container{
    height: 80vh;
    margin-top: 10vh ;
    margin-bottom: 10vh;
}

.perfil{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.foto img{
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

/* perfil */

/* enlaces */

.bx{
    font-size: 30px;
}

.enlaces{
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 350px;
    height: 60vh;
    gap: 50px;
    margin-top: 50px;
}

li.link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 20px;
    background-color: #ffc801;
    border-radius: 10px;
    box-shadow: 10px 10px 5px 0px #000000;
    cursor: pointer;
    color: black;
    transition: 200ms ease-in-out;
}

li.link:hover{
    scale: 1.1;
    background-color: #0e42ff;
    box-shadow: 10px 10px 5px 0px #0e42ff4a;
    color: white;
}

/* footer */

.copyright p{
    text-align: center;
}

.bravo{
    color: white;
    filter: drop-shadow(1px 1px 1px black);
}