/*Estilos generales*/

html{
    font-size: 62.5%;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    text-align: center;
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(../img/bg.jpg);
    background-size: cover;
}

/*Header*/

nav, footer{
    background-color: rgba(123, 99, 145, 0.9);
    height: 10vh;
    padding: 2rem;
    display: flex;
    align-items: center;
}

nav{
    justify-content: space-between;
}

.navbar>li{
    margin: 0px 20px;    
}

ul{
    display: flex;
}

ul>li{
     list-style-type: none;   
}

a{
    text-decoration: none;
    color:rgba(255, 255, 255, 0.8);
}

/*Main*/

.container{
    display: flex;
}

.datos, .perfil{
    margin: 30px 15px;
    padding: 2rem;
    height: 90vh;
    color:rgb(10, 10, 10);
    background-color: rgba(224, 209, 236, 0.472);
    backdrop-filter: blur(5px);
    border: solid 1px rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 10px 15px 5px rgba(0, 0, 0, 0.05);
}

.perfil{
    width: 30vw;
    
}

.datos{
    width: 70vw;
    min-height: 80% auto;
}

h1{
    font-family: 'Times New Roman', Times, serif;
    font-size: 34px;
    letter-spacing: 2px;
    color: rgba(58, 54, 54, 0.8);
    text-shadow: -3px 10px 6px rgba(123, 99, 145, 0.801);
}

h3{
    color: rgba(78, 76, 76, 0.8);
    margin: 20px;
}

.foto-perfil{
    margin: 30px;
    width: 190px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 10px 20px 5px rgba(172, 139, 189, 0.6);
}

.botones{
    justify-content: center;
}

.botones>li{
    background-color: rgba(123, 99, 145, 0.8);
    border-radius: 5px;
    box-shadow: 0 7px 10px 3px rgba(70, 69, 69, 0.5);
    margin: 5px;
    padding: 10px 32px;
    text-align: center;
    display: inline-block;
    font-size: 28px;

}

.info{
    margin: 50px 0px;
}

.info h3{
    color:rgba(115, 100, 134, 0.8);
    font-size: 40px;
}

.info span{
    color: rgba(46, 182, 192, 0.842);
    font-size: 50px;
    text-shadow: 5px -8px 8px rgba(255, 255, 255, 0.9);
}

.info i{
    color:rgba(46, 182, 192, 0.842);
    text-shadow: 5px 5px 8px rgb(255, 255, 255, 9);
}

.detalle{
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(5px);
    border: solid 1px rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 10px 10px 5px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.detalle h4 a{
    color: rgba(23, 22, 29, 0.808);
    text-transform: uppercase;
}

/*Footer*/

footer{
    justify-content: center;
}

/* Sobre mi */

.about{
    margin: 5px 7px;
    text-align: justify;
    color: rgba(0, 0, 0, 0.856);

}

.detalle>p>span, .github{
    font-style: italic;
    color: tomato;
}