
html{
    background-color: #191919;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: 0;

    font-family: Arial, Helvetica, sans-serif;
}

a{
    text-decoration: none;
    
}

.header {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content:center;
    padding: 10px 0 10px 0;
    color: white;
}

.header div {
    width: 80%;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
}

.header ul{
    display: flex;
    justify-content: space-around;
    list-style-type: none;
}

.header ul li{
    margin-right: 10px;
}

.header a{
    color: white;
    padding: 10px 20px 10px 20px;
}

.header a:hover , a.active-page{
    border-bottom: 5px solid rgb(0, 119, 255);
}

.container{
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section{
    width: 80%;
    max-width: 800px;
}

.about-me p{
    background-color: #242426;
}
.about-me{
    height: 300px;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
}
.about-me div{
    width: 50%;
    padding: 10px;
    
}

.my-info p{
    font-weight: bolder;
    font-size: 25px;
    line-height: 35px;
    padding-left: 10px;
}

.my-info{
    color: white;
    background-color: rgb(36, 35, 37);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.my-info-1{
    background-image: url("../images/20220422113226_IMG_1909.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-me .color-1{
    color: orange;
    background-color: #242426;
}
.about-me .color-2{
    color: rgb(255, 0, 85);
    background-color: #242426;
}
.about-me .color-3{
    color: rgb(111, 0, 255);
    background-color: #242426;
}

.more-info{
    width: 100%;
    height: 100%;
    max-width: 800px;

    display: flex;
    justify-content: space-around;
    

}

.my-skills-box{
    width: 100%;
    height: 100%;
    min-height: 60px;
    color: white;
    margin-left: 10px;

    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
}

.skills-box{
    width: 100%;
    height: 100%;
    background-color: #242426;
    padding-top: 15px;
    padding-bottom: 30px;
    text-align: center;
    
}

.skills-box h3{
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.skill{
    width: 60px;
    height: 60px;
    margin: 10px;
    display: inline-block;
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.abilities-box{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin-top: 30px;
}

.ability{
    width: 90%;
    min-height: 60px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.ability h5{
    width: 100%;
    margin-bottom: 10px;
}

.progress{
    width: 100%;
    height: 15px;
    background-color: rgba(71, 71, 71, 0.459);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.progress-bar{
    height: 15px;
    background-color: rgb(0, 161, 182);
    border-radius: 20px;
    position: absolute;
}

.progress p{
    width: 100%;
    text-align: center;
    position: absolute;
    margin: 0;
    color: white;
    font-weight: bold;
    font-size: 13px;
}

@media (max-width: 700px) {
    .more-info{
        width: 95%;
        flex-direction: column-reverse;
        align-items: center;
    }
    .my-skills-box{
        padding: 0;
        margin: 0;
        margin-bottom: 10px;
    }
    .skills-box{
        padding-bottom: 30px;
    }
    .header div{
        width: 100%;
    }

    .header h3{
        display: none;
    }

    .header ul{
        width: 100%;
    }

    .header ul li{
        margin: 0;
    }

    section{
        width: 95%;
    }
    .about-me{
        height: 400px;
        flex-direction: column-reverse;
        border-radius: 20px;
    }
    .about-me div{
        width: 100%;
        padding: 0;
    }
    .my-info{
        height: 50%;
    }
    .my-info-1{
        height: 50%;
        background-image: url("../images/20220422113226_IMG_1909.jpg");
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
}


/*
.header .dropdown-btn{
    display: none;
    width: 20px;
    height: 20px;
}

@media (max-width: 700px) {
    .header div{
        width: 100%;
    }
    .header h3{
        margin-left: 10px;
    }
    .header .dropdown-btn{
        display: block;
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    .header ul{
        display: none;
    }
}
*/