*{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    
}
div, ul, nav, header, footer, a, li, label, body{
    margin: 0%;
    padding: 0%;
}
.header{
    background-color: rgb(151, 150, 150);
    display: flex;
    justify-content: space-between;
    align-items: center;
    container-type: inline-size;
    container-name: header;
}
.header_open-nav-button{
    color: #48e;
    font-size: 3rem;
    font-weight: 600;
    position: absolute;
    right: 10px;
}
.header_checkbox{
    display: none;
}
.header_nav{
    display: none;
    background-color: rgb(151, 150, 150);
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0;
    z-index: -1;
}
.header_nav-list{
    display: flex;
    flex-direction: column;
    height: 40vh;
    justify-content: space-evenly;
    margin: auto;
}
.header_checkbox:checked ~ .header_nav{
    display: flex;
}
.header_logo{
    max-width: 100%;
    width: 64px;
    margin: 10px 20px;
} 
.header_nav-items{
    list-style: none;
    text-align: center;
}
.header_nav-items a{
    color: rgb(5, 114, 2);
    text-decoration: none;
    
}
@container header (min-width: 600px){
    .header_nav{
        display: block;
        position: static;
        height: auto;
        justify-content: space-around;
    }
    .header_nav-list{
        flex-direction: row;
        height: auto;
        width: auto;
        gap: 20px;
        margin-right: 40px;
    }
    .header_open-nav-button{
        display: none;
    }
}
.profile{
    container-name: profile;
    container-type: inline-size;
}

.profile_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    max-width: 1400px;
}
.profile_data-container{
    max-width: 600px;
    padding: 12px;
}
.profile_img-container{
    max-height: 500px;
    overflow: hidden;
}

.profile_img{
    max-width: 100%;
    width: 720px;   
}
.title_back-systems{
    color: blue;
    font-family: Arial, Helvetica, sans-serif;
}
p{
    text-align: justify;
    line-height: 35px;
    letter-spacing: 1px;
}
.profile_skills-container{
    color: #26a;
}
.load-bar{
    border: 2px solid #48e;
    border-radius: 8px;
    color: #fff;
    padding: 2px;
    font-size: 12px;
    width: 80%;
    margin: 4px;
    margin-left:0 ;
}
.profile_skill{
    list-style: none;
    display: flex;
    margin: 10px;
    max-width: 600px;
    margin-left:0 ;
    align-items: center;
}
.load-bar_bar{
    background-color: #48e;
    border-radius: 4px;
    padding: 4px 6px;
    margin-left: 0;
}
.profile_skill-name{
    color: #48e;
}
.bar--80{
    width: 80%;
}
.bar--70{
    width: 70%;
}
.bar--60{
    width: 60%;
}
.bar--90{
    width: 90%;
}
@container profile (min-width:720px){
    .profile_wrapper{
        flex-direction: row;
        padding: 20px;
        background-color: transparent;
        height: 90vh;
        margin: auto;
    }
    .profile_data-container{
        background-color: #f5eeee;
        display: flex;
        align-items: center;
        border-radius: 0 25px 25px 0;
        box-shadow: 0px 0 9px #002;
    }
    h1{
        margin-top: 0%;
        font-size: 3rem;
        text-wrap: balance;
        justify-content: center;
    }
    .portfolio_title{
        color: #fff;
    }
    .profile_data{
        max-width: 620px;
    }
    .profile_img-container{
        max-height:initial ;
        border-radius: 25px 0 0 25px;
    }
    .profile_img{
        height: 100%;
        object-fit: cover;
        width:620px ;
        background-color: #fff;
        box-shadow: #002;
    }
}
.contaier_title-header{
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
}

.container_header{
    background-color: blue;
    padding: 2%;
    font-weight: 100;
    display: block;

}
.button_inicio{
    background-color: yellowgreen;
}
