:root{
    --text-color:#1a1c20;
    --link-color:#4a76ee;
    --background-color:#eeeff1;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html{
    scroll-behavior: smooth;

}

body{
    font-family:'poppins',sans-serif;
    background-color: var(--background-color);
    max-width: 1500px;
    margin: 0 auto;
}

a{
    color: var(--link-color);
    text-decoration: none;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 80px;
}

nav .left {
color: var(--text-color);
font-size: 22px;
font-weight: 600;
}

nav .right a {
color: var(--text-color);
 margin: 0 10px;
}

nav .right a:last-child{
    color: var(--background-color);
    background-color: var(--text-color);
    padding: 5px 15px;
    border-radius: 5px;
}

nav .right a:last-child:hover{
    background-color: #0936b2;
}

nav .right a span{
    margin-left: 5px;

}

.hero-section{
    display: flex;
    justify-content: space-between;
    align-items:center;
    padding: 0 50px;
    margin: 50px 0;
    margin-bottom: 100px;
    gap: 40px;
}

.hero-section .text{
    flex: 5;
}

.hero-section .text h2{
    font-size: 45px;
}

.hero-section .text h4{
    margin-bottom: 20px;
    align-items: center;
}

.hero-section .text .links{
    margin-top: 25px;
}

.hero-section .text .links a{
    display: inline-block;
    padding: 5px 10px;
    border: 2px solid var(--link-color);
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: .1s;
}

.hero-section .text .links a:hover{
    color: var(--text-color);
    border-color: var(--text-color);
}

.hero-section .headshot{
    flex: 2;
    display: flex;
    justify-content: right;
}

.hero-section .headshot img {
    width: 250px;
    border-radius: 50%;
}

.about-me{
    padding: 0 50px;
    margin-bottom: 100px;
}

.about-me h2 {
    text-align: center;
    font-size: 35px;
}

.about-me .text {
    text-align: center;
   margin-bottom: 25px;
}

.skills-section {
    padding: 0 50px;
    margin-bottom: 100px;
}

.skills-section h2 {
    text-align: center;
    font-size: 35px;
}

.skills-section .text {
    text-align: center;
   margin-bottom: 25px;
}

.skills-section .cells {
    display: flex;
    justify-content: center;
}

.skills-section .cells .cell{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    padding: 10px 20px;
    margin: 10px;
    border: 1.5px solid #d3d3d3;
    border-radius: 5px;
    gap: 10px;

}

.skills-section .cells .cell img {
    width: 30px;
    height: 30px;
   
}

.skills-section .cells .cell span{
    font-size: 20px;
}

.qualification-section{
    padding: 0 50px;
    margin-bottom: 100px;
}

.qualification-section h2{
    font-size: 35px;
    margin-bottom: 20px;
   text-align: center;
}

.qualification-section .text {
    text-align: center;
}

.qualification-section .text h4{
    font-size: 20px;
    color: rgb(42, 42, 42);
}

.qualification-section .text .education{
    margin-top: 20px;
    padding: 10px 20px;
    border: 2px solid var(--link-color);
    height: 100px;

}

.qualification-section .text .education h5{
    font-size: 20px;
}

.projects-section{
    padding: 0 50px;
    margin-bottom: 100px;
}

.projects-section h2 {
    text-align: center;
    font-size: 50px;
}

.projects-section .text {
    text-align: center;
   margin-bottom: 25px;
}

.projects-section .text h5{
    font-size: 20px;
    padding: 20px;
}

.projects-section .text h3{
    font-size: 30px;
    padding-bottom: 35px;
}

.projects-section .text img{
    width: 500px;
}

.contact-section{
    padding: 0 50px;
    margin-bottom: 100px;
}

.contact-section h2 {
    font-size: 35px;
}

.contact-section .group {
    display: flex;
    gap: 50px;
}

.contact-section .group .text{
    flex: 3;
    margin-top: 10px;
    font-size: 20px;
    padding-left:20px;
}

.contact-section .group form{
    flex: 3;
    display: flex;
    flex-direction: column;
}

.contact-section .group form input,
.contact-section .group form textarea{
    font-family: 'poppins',sans-serif;
    border: 2px solid var(--link-color);
    background-color: transparent;
    padding: 10px;
    margin-bottom: 15px;
    outline: none;
    resize: none;
}

.contact-section .group form button{
    font-size: 16px;
     font-family: 'poppins',sans-serif;
    color: #fff;
     background-color:var(--link-color);
     border: none;
     height: 50px;
     cursor: pointer;
     transition: .1s;
     border-radius: 10px;
}

.contact-section .group form button:hover{
    filter: brightness(.9);
}

.contact-section .group .text .contact {
    padding: 10px;
    font-size: 20px;
    font-weight:600;
}

.contact-section .group .text .email{
    padding: 10px;
        font-size: 20px;
    font-weight:600;
}

.contact-section .group .text .location{
    padding: 10px;
        font-size: 20px;
    font-weight:600;
}

.footer-section{

    text-align: center;
    padding: 120px 50px;
    height: 300px;
    background-color: #eaeaea;
}