*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: #2e2c2c;
}
/* --navbar */
.header {
    height: 100%;
    position: fixed;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 5px;
    
}
.navicon{
    font-size: 20px;
    padding: 2px;
}
.navicon:hover{
    font-size: 25px;
    background-color: #ffffff;
}

.header nav {
    width : 100%;
    
}
.header ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:25px;
    list-style-type: none;
}
.header a{
    text-decoration: none;
    color: #ffb400;
    font-size: me dium;
}


/* --hero page */
.heropg{
    height: 100vh;
    position: relative;
    right: 20px;
    display: flex;
    margin-right: 40px;
    justify-content: space-evenly;
    align-items: center;
    border-left: solid 30px #ffb400;
}
.heropg h2 {
    position: fixed;
    top:0;
    left: 0;
    cursor: pointer;
    color: #ffb400;
    font-size: 25px;
    padding: 30px;
  }
  
.hero-content h5{
    font-size: 30px;
    font-family:Georgia, 'Times New Roman', Times, serif;
    padding: 3px;
    padding-left: 30px;
    color: #ffb400;
}
.hero-content h4{
    font-size: 35px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-left: 15px;
    color: #ffffff;
}
.hero-content p{
    font-size: 30px;
    padding-top: 3px;
    font-style: italic;
    color:whitesmoke;
}
.photo{
    width: 300px;
    height: 300px;
    border-radius: 150px;
    border:  2px solid #b9cd00;
    cursor: pointer;
}
.photo:hover{
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border:  10px solid whitesmoke;   
}

/*--About me Page*/
.aboutme{
    height: 100vh;
    border-left: solid 15px #ffb400; 
    position: relative;
    right:25px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.intro{
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    color: aliceblue;
    text-align: center;
    padding: 45px;
    padding-bottom: 20px;

}
.aboutme h3{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-style: italic;
    text-align: center; 
    color:#ffb400;
    padding: 5px;

}
.skillsbox {
    margin-top: 20px;
    width: 50%;
    height: auto;
    border: 3px solid rgb(233, 239, 233);
    padding: 10px;
    display: flex;
    justify-content: center; 
    align-items: center; 
    background: linear-gradient(120deg, #ff9900, #146eb4);
    flex-wrap: wrap; 
}
.skillsbox:hover{
    background-color: #004bff;
    border: 5px solid black;
}
.skills-heading {
    width: 100%; 
    font-size: 20px;
    font-weight: bold; 
    text-align: center; 
    margin-bottom: 10px; 
    color: aliceblue;
    text-decoration: underline;
}
.skillicon{
    display: inline-block;
    width:80px;
}

/* --Projects Page */
.projectspg{
    position: relative;
    right: 25px;
    height: 100vh;
    border-left: solid 35px #ffb400; 
    text-align: center;
    display: flex;
    justify-content: center; 
    align-items: center; 
    flex-wrap: wrap; 
}
.proj-heading{
    width: 100%; 
    font-size: 20px;
    font-weight: bold; 
    text-align: center; 
    margin-bottom: 10px; 
    color: aliceblue;
    text-decoration: underline;
}
.box{
    border:solid 2px #ffb400;
    display: inline-block;
    width: 250px;
    color: white;
    padding: 5px;
    margin: 5px;
    background: linear-gradient(120deg, #ff9900, #146eb4);
}
.box h4{
    color: #150f01;
}
.box img{
    width: 200px;
    height: 200px;
    padding: 5px;
}
.box:hover{
    
    color: white;
    border: 7px solid white;
}

/* --Resume page */
.resumepg{
    position: relative;
    right: 25px;
    height: 100vh;
    border-left: solid 35px #ffb400; 
    text-align: center;
    display: flex;
    justify-content: center; 
    align-items: center; 
    flex-wrap: wrap; 
    
}
.goal{
    font-size: larger;
    color: #ffffff;
    text-align: center;
    font-style: italic;
}
.goal-heading{
    color: #ffb400;
    font-style: normal;
    font-size:larger;
    padding: 20px;
}
.resume-btn{
    width: 500%;
    height: 500%;
    background: linear-gradient(120deg, #ff9900, #146eb4);
}
/* --Contact-section */

.contact-sec{
    height: 20vh;
    background: linear-gradient(120deg, #ff9900, #146eb4);
    display: flex;
    justify-content: center;
    align-items: center;
}
.con-icon{
    font-size: 30px;
    padding: 20px;
    color: #2e2c2c;
}