/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : 04-Sep-2023, 4:23:04 pm
    Author     : hp
*/


html{scroll-behavior : smooth;}

*{
   margin: 0;
   padding: 0;
   font-family: 'Poppins',sans-serif;
}
body{
    background-color: #080808;
    color: white;
    height: 100%;
    width: 100%;
    
}
.a{
     position: relative;
    overflow: hidden;
}
#header{
    width: 90%;
    height: 10vh; 
}
.image1{
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.container{
    padding: 20px 10%;
}
nav{
    display: flex;
    align-items: center;
    width: 1200px;
    justify-content: space-between;
    flex-wrap: wrap;
}
nav ul li{
    display: inline-block;
    list-style-type: none;
    margin: 10px 20px;
}
nav ul li a{
    color: white;
    text-decoration: none;
    font-size: 18px;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background-color: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
#home{
      width: 90%;
    height: 80vh;
}

#about{
    width: 90%;
    height: 80vh;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1{
    flex-basis: 35%;
}
.about-col-1 img{
    width: 400px;
    height: 500px;
    border-radius: 20px;
}
.about-col-2{
    flex-basis: 60%;
}
.text1{
    font-size: 20px;
    color: white;
    text-align: justify;
    line-height: 40px;
}
.subtitle{
    font-size: 60px;
    font-weight: 600;
    color: white;
}
#education{
    width: 90%;
    height: 70vh;
    color: white;

}
#skills{
    width: 90%;
    height: 70vh;
    
}

#skills ul li{
    margin-top: 30px;
    font-size: 20px;
    color: white;
    
}
table{
    text-align: center;
    font-size: 20px
}
table th{
    color:  #ff004f;
    font-size: 25px;
}
#contact{
    margin-top: 50px;
    width: 90%;
    height: 50vh;
}
.contact-left{
    flex-basis: 35%;
}
.contact-right{
    flex-basis: 60%;
}
.contact-left p{
    margin-top: 30px;
}
.contact-left p i{
    color: #ff004f;
    margin-right: 15px;
    font-size: 25px;
}
.social-icons{
  margin-top: 30px;
}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: white;
    display: inline-block;
     transition: transform 0.5s;
}
.social-icons a:hover{
    color: #ff004f;
    transform: translateY(-5px);
}
button{
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
button:hover{
    background-color: #ff004f;
}
