* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}
navbar {
    background-color: white;
}
.nav-link {
    color: black;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}
.nav-link:hover {
    color: white;
    background-color: black;
}
.navbar-brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: black;
    cursor: pointer;
    text-decoration: none;

}
/*main section */
.main {
    background: url( me.jpg)no-repeat;
    background-size: cover;
    width: 100%;
    height: 95vh;

}
main h3{
    font-size: 4.4rem;
    font-weight: 700;

    
}
.main h6 {
    font-size: 1.4rem;
    text-transform: uppercase;
    line-height: 1;
    border-bottom: 3px solid rgb(24, 19, 24);
    width: 35%;
}

.main  .bt1{
    height: 55px;
    width: 138px;
    background-color: rgb(41, 31, 35);
    color: white;
    outline: none;
    border: none;
    font-weight: bold;
    border-radius: 5px;


}
.main  .bt1:hover{
    background-color:rgb(146, 63, 187) ;
    transition: 0.5s;
}
.main  .bt2{
    height: 55px;
    width: 138px;
    /*background-color: transparent;*/
    color: rgb(23, 17, 26); 
    outline: none;
    border: 1px rgb(23, 17, 26);
    font-weight: bold;
    border-radius: 5px;
}
.main  .bt2:hover{
    background-color:rgb(146, 63, 187) ;
    transition: 0.5s;
}
.about img{
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

h1{
    font-size: 3rem;
    font-weight: 900;
}

.progress{
    background-color: rgb(225, 219, 219);
    justify-content: flex-start;
    border-radius: 50px;
    align-items: center;
    position: relative;
    display: flex;
    height: 25px;
    width: 100%;
}

.pro-value1{
     animation: 1oad1 3s normal forwards;
     border-radius: 50px;
     background-color: black;
     height: 25px;
     width: 0;


}
.progress p{
    color: white;
    padding: 12px;
}
@keyframes load1 {
    0%{
        width: 0;

    }
    100%{
        width: 98%;
    }


    
}