body{
    margin: 0;
    background: url(../IMGS/89781.jpg);
    background-size: cover;
    /*background-attachment: fixed;*/
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 100vh;
    
    
}
.contenedor {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;  
    
    border-radius: 5px;
    color: #fff;
    display: grid;
    gap: 3px;
    box-shadow: 0px 5px 15px #FFE342;
    grid-template-areas: "sidebar  aboutme  aboutme"
                         "sidebar  tecnologic    tecnologic"
                         "sidebar     contacme     contacme";
    
}

.contenedor .sidebar {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(2px);
    grid-area: sidebar;
    align-content: space-evenly;
    border-radius: 3px 0 3px 0;
    width: 130px;
}
.sidebar-conten-btns {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}
/* FIN SIDEBAR  */

.contenedor .aboutme {
    background: rgba(0,0,0,0.8);
    backdrop-filter:blur(8px);
    color: #2DE33D;
    grid-area: aboutme;
    border-radius: 0 5px 0 0;
}
.aboutme-conten {
    display: grid;
    grid-template-columns: 30% 70%;
    border-radius: 0 0 5px 5px;
}


.contenedor .tecnologic {
    padding: 5px;
    background: #fff;
    color: #000;
    grid-area: tecnologic;
}
.contenedor .contacme {
    background: rgba(0,0,0,0.8);
    backdrop-filter:blur(8px);
    grid-area: contacme;
}

.aboutme-conten-me-img{
    display: flex;
    padding: 10px;
    justify-content: center;
}
.aboutme-conten-me-txt{
    display: flex;
    padding: 0 20px 0 10px;
    flex-direction: row;
    justify-content: space-between;
   
}

.tecnologic-conten {
    justify-items: center;-
    padding: 15px;
    display: grid;  
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px; 
}

.contacme-conten {
    justify-items: center;
    padding: 5px;
    display: grid;  
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 5px; 
}

.contacme-conten-items {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
