*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    text-decoration: none;
    list-style: none;
}
header{
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 12%;
    background: rgb(6, 13, 107);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
} 
.active{
    background-color: rgb(156, 187, 30);
}
.logo{
    font-size: 25px;
    color: white;
    font-weight: 600;
    transition: 0,3s ease;
}
.logo:hover{
    color: orangered;
    text-shadow: 0 0 25px orangered,
                 0 0 25px orangered;
    transition: scale(1.1);
}
span{
    color: skyblue;
}
.navbar{
    display: flex;
    justify-content: center;
    text-align: center;
}
.navbar a{
    font-size: 15px;
    color: white;
    font-weight: 500;
    margin: 0 20px;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;

}
.navbar a:hover,
.navbar a:active{
    color: orangered;
    border-bottom: 3px solid transparent;
}
.contact{
    padding: 10px 28px;
    background-color: white;
    color: black;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0,3s ease;
}
.contact:hover{
    background-color: orangered;
    box-shadow: 0 0 25px orangered;
    color: white;
}
.home{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background: rgb(241, 241, 241);
    display: flex;
    align-items: center;
    gap: 7em;
}
.home-content{
    max-width: 800px;
}
.home-content h3{
    font-size: 42px;
}
.home-content h1{
    font-size: 62px;
    line-height: 1.2;
}
.home-content p{
    font-size: 18px;
    margin: 25px 0 30px;
}

.img-box{
    padding: 45px;
}

.img-box img{
  border-radius: 40px;
  width: 550px;
}

::-webkit-scrollbar{
    width: 15px;
}

::-webkit-scrollbar-thumb{
    background-color: rgb(6, 13, 107);
}

::-webkit-scrollbar-track{
    background-color: rgba(0, 0, 0, 0.6);
    width: 50px;
}

.skills{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}
.skills h1{
    font-size: 62px;
    line-height: 1.2;
    padding: 20px;
}
.skills p{
    font-size: 20px;
}
.skills-content{
    display: flex;
    justify-content: center;
    align-items: center;
}
.skills-content i{
    display: flex;
    padding: 50px;
    font-size: 5rem;
}

.contact-form h2{
    text-align: center;
    margin-top: 3em;
    margin-bottom: 1em;
    font-size: 36px;
}
.input-box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.btn-1{
    padding: 15px 28px;
    background-color: black;
    color: white;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
}
.btn-1:hover{
    background-color: white;
    color: black;
    border: 2px solid black;
}
.footer{
    bottom: 0;
    width: 100%;
    padding: 40px o;
    background-color: rgb(6, 13, 107);
    gap: 20px;
}
.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: white;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer .social a{
    font-size: 24px;
    color: white;
    border: 2px sold orangered;
}
.footer .social i{
    display: flex;
    padding: 20px;
    font-size: 50px;
}

.project--section {
    gap: 20px;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-card {
    background-color: #825bb1;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
    width: 22rem;
    overflow: hidden;
    align-items: center;
}

.btn-2{
    background-color: black;
    color: white;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
}

.project--section img {
    display: flex;
    width: 20rem;
    height: 15rem;
    align-items: center;
}

.project-content {
    padding: 15px;
}

.btn-2:hover{
    background-color: white;
    color: black;
    border: 2px solid black;
}