*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif ;
    text-decoration: none;
}
/* nav style--------------------------------------------------- */
body{
        height: 1vh;
        background: url("../img/abstract-luxury-gradient-blue-background-smooth-dark-blue-with-black-vignette-studio-banner.jpg");
        background-size: cover repeat-y;
        
}
header{
    position: fixed;
    background-color: #4300FF;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: #7991bd 4px solid;
 
}
header nav{
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo{
    font-size: 30px;
    font-weight: bold;
    color: white;
}

header nav .logo span{
    color: #7991bd;
}

header nav .links{
    display: flex;
    color: white;

}
header nav .links li{
    list-style: none;
    position: relative;
    margin: 0 25px;
    height: 80px;
    line-height:80px ;

}

header nav .links li a{
    font-weight: bold;
    font-size: 17px;
    transition: .5s;
    color: white;
}
header nav .links a:hover{
    color: #7991bd;
}
header nav .links li::after{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: white;
    transition: .4s;
}
header nav .links li:hover::after{
    width: 100%;
}
header nav .links li.active::after{
    width: 100%;

}
header nav .social-links a{
    color: white;
    font-size: 24px;
    margin-left: 15px;
}
header nav .social-links a:hover{
    color: #7991bd;
}
/* content style--------------------------------------------------- */
.content-sec{
    height: 100vh;
    margin-top: 100px;
    border: 10px  white;
    /* border-radius: 100px; */
}

.content-sec .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 85%;
    margin: auto;
}
.content-sec .container .div-text{
    width: 45%;
    color: black;
    font: bold;
}
.content-sec .container .div-text h1 span{
    color: #7991bd;
}
.content-sec .container .div-text h1{
    font-size: 40px;
    margin-bottom: 20px;
}
.content-sec .container .div-text h3{
    font-size: 30px;
    margin-bottom: 20px;
}
.content-sec .container .div-text p{
    font-size: 20px;
    margin-bottom: 20px;
}
.content-sec .container .div-text a{
    display: inline-block;
    padding: 10px 20px;
    background-color: #7991bd;
    color: white;
    border-radius: 5px;
    transition: .4s;
}
.content-sec .container .div-text a:hover{
    background-color: #4300FF;
}
.content-sec .container .div-img{
    width: 40%;
}
.content-sec .container .div-img img{
    width: 100%;
    height: 770px;
    
}
/* skills section---------------------------- */
.skills-section{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.skills-section ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.skills-section ul li{
    margin: 10px;
    padding: 10px 20px;
    background-color: #7991bd;
    color: white;
    border-radius: 5px;
    transition: .4s;
}
.skills-section ul li:hover{
    background-color: #4300FF;
}
/* contact section------------------------ */
.contact-section a{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-left: 18px;
    font-size: 28px;
    color: white;
}

/* no projects yet */
.no-projects{
    color: #7991bd;
    font-size: 30px;
}

.content-sec .container .div-text iframe{
    width: 100%;
    height: 370px;
    border-radius: 20px;
}