body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
header {
    
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;    
    min-height: 125px;
}
nav {   
    display: flex;
    margin: 20px 0;   
    justify-content: center;
}
nav a {
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
    color: #333;
    background-color: #999;
}
section {
    margin-bottom: 20px;    
}
footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}
article{
    margin-top: 30px;
}
article p{
    text-align: justify;
}
article h3{
    background-color: #eee;
}
svg{
    position: relative;
    margin: 0;
    width: 100px;
    height: 100px;
}
img{
    position: absolute;
    margin: 100px;
}
.listados{
    position: relative;
    float: left;
    width: 100px;
    height: 100px;
    margin: 15px 5px;
}
.Nombre{
    padding: 0;
    text-align: center;
    font: 1em Arial Black;
}
.ContLenguajes{
    width: 100%;    
    float: inline-end;
    padding-bottom: 10px;
    margin-bottom: 20px;
    justify-content: space-evenly;
}

.proyectos{
    margin-top: 10px;
}

.imagencircular {
    width:  115px; /* Ajusta el tamaño según sea necesario */
    height: 115px; /* Ajusta el tamaño según sea necesario */
    overflow: hidden;
    border-radius: 50%; /* Esto hace que el contenedor sea circular */
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    border: 5px #fff solid;
    margin-left: 15px;
    margin: auto;
}
.circular_img {
    width: 100%; /* La imagen ocupará todo el contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    position: relative;
}
#copi{
    position: absolute;
    margin: 0px 2px;
    width: 20px;
    height: 20px;  
}
#copi:active{
    width: 15px;
    height: 15px;
    padding: 2.5px; 
}
.flecha{
    text-decoration: none;
    color: #007bff;
    font-size: 18px;
    display: flex;
    align-items: center;
    float: left; 
}
.flecha svg{
    margin-right: 5px;
}
ul {
    list-style-type: none;
}
@media (max-width: 650px) {
    nav{
        flex-direction: column;
        display: none;
    }
}