*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #174691;

}

.container{
    width:90%;
    margin-inline: auto;
}


.navigation{
    width: 96%;
    margin: 20px 20px 20px 20px;
    padding: 10px 10px 10px 10px;
    background-color: #2e6fd9;
    border-radius: 10px;

}

.navigation .box-navigation{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navigation .box-navigation .box{
    margin-left: 0%;
}
.navigation .box-navigation .box:nth-child(1) h1 {
    color: white;

}

.navigation .box-navigation .box:nth-child(2) ul{
    display: flex;
    flex-direction: row;
}

.navigation .box-navigation .box:nth-child(2) ul li{
    list-style-type: none;
    margin-left: 40px;
}

.navigation .box-navigation .box:nth-child(2) ul li a {
    text-decoration: none;
    color: rgb(242, 239, 239);
    transition: all .3s ease;
}

.navigation .box-navigation .box:nth-child(2) ul li a:hover {
    color: #174691;
}

.navigation .box-navigation .box:nth-child(3) {
    display: none;
}

@media screen and (max-width: 950px) {
    .navigation{
        display: inline-block;
    }
    .navigation .box-navigation .box:nth-child(2){
        display: flex;
        position: absolute;
        top:50px;
        right: 50px;
        background-color: #acc9f9;
        width: 150px;
        border-radius: 10px;
        opacity: 0;
        transition: all .3s ease;
    }

    .navigation .box-navigation .menu-navigation.menu-active{
        opacity: 1;
        top: 100px;
    }

    .navigation .box-navigation .box:nth-child(2) ul{
        flex-direction: column;
    }

    .navigation .box-navigation .box:nth-child(2) ul li{
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .navigation .box-navigation .box:nth-child(2) ul li a{
        color: #174691;
        text-align: center;
    }   


    .navigation .box-navigation .box:nth-child(3){
        display: flex ;
        align-items: center;
    }
    .navigation .box-navigation .box:nth-child(3){
        font-size: 30px;
    }
}

.description{
    width: 30%;
    height: 300px;
    border-radius: 5%;
    background-color: #2e6fd9;
    margin-left: 19px;
    float: left;
}
.description .container-descript .name{
    margin-left: 5%;
    color: white;
}
img{
    margin-top: 10%;
    width:20%;
    border-radius: 20%;
    box-shadow: 3ch;
}

.container-foto{
    width: 65%;
    height: 300px;
    background-color: #2e6fd9;
    float:right;
    margin-right: 29px;
    border-radius: 10px;
}

@media screen and (max-width:990px) {
    .description{
        display:grid;
    }

    img{

        margin-left: 0%;
        width:15%;
    }
}

.about{
    display: inline-block;
    padding-top: 10px;
}
.box-about{
    width: 100%;
    margin: 20px 20px 20px 20px;
    padding: 10px 10px 10px 10px;
    background-color: #2e6fd9;
    border-radius: 10px;
    text-align: center;
}
.container .box-about .box:nth-child(1) h1{
    color: white;
}

.skill{
    width: 96%;
    height: 70px;
    margin: 20px 20px 20px 20px;
    padding: 10px 10px 10px 10px;
    background-color: #2e6fd9;
    border-radius: 10px;
}

.skill .container .box-skill{
    width:100%;

}

.skill .container .box:nth-child(1) h1{
    padding-top: 1%;
    text-align: center;
    color: white;
}















