*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html{
    height: 100%;
    width: 100%;
}
body{
    background-color: #000;
    font-family: Arial, Helvetica, sans-serif;
}
header{
    height: 60px;
    padding: 0px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0px;
    width: 100%;
    background-color: #000;
    z-index: 999;
}
header nav ul li{
    list-style-type: none;
    margin: 15px;
}
header nav ul li a:hover{
    color: #ffffffa9;
}
header nav ul li a{
    color: #fff;
    text-decoration: none;
    font-weight: 550;
}
header nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
header div button{
    font-size: 15px;
    padding: 8px 12px;
    cursor: pointer;
    background: linear-gradient(to right, orangered, yellow);
    border-radius: 50px;
    border: none;
    color: #fff;
    transition: all 0.2s;
}
header div button:hover{
    box-shadow: 0px 0px 10px 5px orangered;
    transition: all 0.2s;
}
header h2{
    color: white;
    font-weight: 700;
}
.gradientText{
    background :linear-gradient(to right, orangered, yellow);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
main{
    color: white; 
    position: absolute;
    /* top: 50px; */
}
.dp{
    width: 400px;
    border-radius: 50%;
}
.socialLinks{
    display: flex;
    align-items: center;
    justify-content: right;
    margin: 6px 0px;
}
.socialLinks a{
    color: rgb(249, 113, 64);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.socialLinks div{
    border: 2px solid rgb(249, 113, 64);
    height: 34px;
    width: 34px;
    padding: 4px;
    border-radius: 20px;
    cursor: pointer;
    margin: 5px;
    transition: all 0.1s;
}
.socialLinks div:hover{
    background-color: orangered;
    box-shadow: 0px 0px 10px 3px orangered;
    transform: scale(1.15);
    transition: all 0.1s;
}
.socialLinks div a i:hover{
    color: white;
}
#home{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 100px;
    padding: 95px 0px 30px 0px;
}
#home>div{
    margin: 7px;
}
#home .text{
    text-align: right;
    width: 50%;
}
.text h1{
    font-size: 50px;
}
.text h2{
    font-size: 30px;
}
.orangeGlowBtn{
    font-size: 15px;
    padding: 9px 18px;
    cursor: pointer;
    background: orangered;
    border-radius: 50px;
    border: none;
    color: #000;
    transition: all 0.2s;
    margin: 4px;
}
.orangeGlowBtn:hover{
    box-shadow: 0px 0px 10px 3px orangered;
    transition: all 0.2s;
}
.blackBtn{
    font-size: 15px;
    padding: 9px 18px;
    cursor: pointer;
    background: #000;
    border-radius: 50px;
    border: 1px solid #ff4500;
    color: orangered;
    transition: all 0.2s;
    margin: 4px;
}
#about{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0px;
    padding-top: 90px;
}
.text{
    width: 40%; 
}
#about div{
    margin: 10px;
}
#services h1{
    text-align: center;
    margin: 15px 0px 10px 0px;
    font-size: 35px;
}
#services{
    margin: 40px 100px 30px 100px;
    padding-top: 60px;
}
#threeServices{
    display: flex;
    text-align: center;
    justify-content: center;
}

#threeServices div:hover{
    transform: scale(1.02);
    cursor: pointer;
    transition: all 0.1s;
    box-shadow: 0px 0px 10px 2px rgba(253, 85, 24, 0.911);
}
#threeServices #figma, #threeServices #code, #threeServices #backend{
    margin: 20px;
    padding: 60px 30px;
    background-color: orangered;
    border-radius: 20px;
    color: #000;
}
#threeServices #figma svg{
    width: 30px;
}
#threeServices #code i, #threeServices #backend i{
    font-size: 40px;
    color: #000;
    font-weight: 700;
}
#threeServices div h2{
    font-size: 25px;
    margin: 15px 0px;
}
#threeServices p{
    font-size: 15px;
}
#projects h1{
    text-align: center;
    margin: 15px 0px 30px 0px;
    font-size: 35px;
}
#projects{
    padding-top: 60px;
    padding-bottom: 30px;
}
.project{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0px 20px;
    width: 90%;
    border: 1px solid orangered;
    border-radius: 25px;
}
.project p{
    font-size: 12px;
}
.project:hover{
    box-shadow: 0px 0px 10px 5px orangered;
    transition: all 0.1s;
    cursor: pointer;
}
.project h2{
    margin: 10px 0px;
}
.project div button{
    margin: 15px 0px;
}
.picture{
    margin: 20px 0px;
}
.projectsContainer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 10px auto;
    width: 80vw;
    row-gap: 18px;
}
#contacts{
    padding: 70px 0px;
}
#contacts h1{
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin: 20px 0px;
}
form div input{
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-size: 15px;
    color: #fff;
    padding: 15px;
}
form div{
    border: 1px solid orangered;
    border-radius: 15px;
    margin: 10px;
    width: 400px;
}
.input-divs{
    border: none;
}
.msg-btn{
    border: none;
}
textarea{
    background-color: transparent;
    width: 99%;
    border: none;
    color: #fff;
    margin: 7px;
    padding: 10px;
    border: 1px solid orangered;
    border-radius: 15px;
}
form{
    display: flex;
    justify-content: center;
}
#msgDiv{
    border: none;
    width: 160px;
    margin: 0px auto;
}
#footSocials{
    justify-content: center;
}
footer{
    background-color: #141414;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#links ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
#links ul li{
    list-style-type: none;
    margin: 9px;
}
#links ul li a{
    color: #fff;
    text-decoration: none;
}
#links ul li a:hover{
    color: #cfcece;
}
#links ul li a, #copyright{
    font-size: 14px;
}
header .btn{
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    display: none;
    padding: 10px 15px;
    border-radius: 40px;
}
header .btn:hover{
    background-color: #575757b0;  
}
@media screen and (max-width: 900px){
    .dp{
        width: 300px;
    }
    #services {
        margin: 40px;
        padding-top: 60px;
    }
    #threeServices #figma, #threeServices #code, #threeServices #backend {
        margin: 15px;
        padding: 35px 30px;
    }
    .projectsContainer {
        margin: 10px auto;
        width: 90vw;
        row-gap: 10px;
    }
}
@media screen and (max-width: 560px){
    #home {
        flex-direction: column-reverse;
        margin: 0px 100px;
        padding: 95px 0px 30px 0px;
    }
    #about {
        flex-direction: column;
        margin: 30px 0px;
        padding-top: 90px;
    }
    #threeServices {
        flex-direction: column;
    }
    #services {
        margin: 40px 90px;
    }
    .projectsContainer {
        margin: 10px auto;
        width: 100vw;
        row-gap: 10px;
    }
    .projectsContainer{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100vw;
    }
    .project {
        width: 120%;
    }
    #home .text {
        text-align: center;
        width: 90%;
    }
    .socialLinks {
        justify-content: center;
    }
    #about .text {
        width: 90%;
        text-align: right;
    }
}
@media screen and (max-width: 450px){
    #contactMeNav{
        display: none;
    }
    header nav ul {
        flex-direction: column;
        position: absolute;
        /* background-color: #000; */
        backdrop-filter: blur(15px);
        flex-direction: column;
        position: absolute;
        right: 0px;
        width: 100%;
        top: -1px;
        padding-top: 20px;
        /* left: 100%; */
        right: -80pc;
        transition: 0.75s right;
    }
    header .btn{
        display: block;
    }
    header nav ul li{
        /* text-align: right; */
        width: 100%;
        height: 100%;
        text-align: center;
        padding-right: 50px;
        padding-top: 20px;
    }
    #cross{
        position: relative;
        left: 20pc;
    }
    .active{
        right: -30px;
        transition: 0.5s right;
    }
    .project {
        width: 100%;
    }
    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #cross{
        position: relative;
        left: 10pc;
    }
}