.sp{
    height: 100vh;
    background-color: #0f131e;
    display: flex;
    flex-direction: row;
    /* justify-content: s; */
    position: relative;
    align-items: center;
    /* overflow-y: hidden; */
}

.projects-section{
    /* position: absolute; */
    /* width:530px; */
    width:30%;
    height:80%;
    /* right:1%; */
    top:11.5%;
    align-items: center;
}

.project{
    display: flex;
    align-items: center;
    column-gap: 40px;
    cursor: pointer;
    padding-left: 20px;
    border-radius: 4px;
    padding-top:10px;
    /* width:460px; */
    /* background-color: chocolate; */
}
.hovered{
    background-color: white;
}
.projects{
    position: absolute;
    /* top:10%; */
    width:500px;
    height:475px;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-right:40px;
    /* background-color: #FFFF00; */
}

.projects::-webkit-scrollbar{
    width:7px;
    /* height:20px; */
    /* background-color: #FFFF00; */
}

.projects::-webkit-scrollbar-track{
    /* color:#212a43; */
    border-radius: 10px;
    background-color: #212a43;
}

.projects::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color: #67ae28;
}

.project:hover{
    background-color:#212a43;
}

.project h2{
    font-weight: 900;
    font-size: 30px;
}

.project span{
    font-weight:400;
    /* font-size: 16px; */
    font-style: italic;
}

.project div{
    width:60%;
}

.project p{
    font-weight: 100;
}
.skills{
    position: relative;
    width: 60em;
    height: 100%;
    display:flex;
    /* background-color: aqua; */
}

.skills h1{
    position: absolute;
    top:10%;
    left:8%;
}

.box-container{
    position: absolute;
    top:20%;
    /* left:8%; */
    display:flex;
    /* background-color: blue; */
    /* height:max-content; */
    flex-wrap: wrap;
    column-gap: 30px;
    justify-content: space-evenly;
    row-gap: 20px;
}

.box{
    background-color:rgba(90, 90, 90, 0.275);
    border:1px black solid;
    border-radius: 3%;
    width:220px;
    height:226px;
    backdrop-filter: blur(100px);
}

.box h3{
    padding-left:20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.set{
    display: flex;
    flex-wrap: wrap;
    /* display: grid;
    grid-template-columns: auto auto; */
    column-gap: 10px;
    margin-left: 8%;
}

.box p{
    /* background-color: rgba(0, 0, 0, 0.687); */
    width:fit-content;
    padding:4px 4px;
    border-radius: 3px;
    /* font-weight: 100; */
    font-size: 18px;
    /* color: rgb(74,73,80); */
    transition: all 0.25s;
    color: black;
    font-weight: 300;
    /* background-color: rgba(0, 187, 0, 0.515); */
    background-color: #FFFF00;
    /* background-color: yellowgreen; */
    cursor: pointer;
}

.box:nth-child(1) p{
    background-color: aquamarine;
}

.box:nth-child(2) p{
    background-color: rgb(0, 203, 102);
}

.box:nth-child(3) p{
    background-color: yellowgreen;
}

.box:nth-child(4) p{
    background-color:tomato;
}

.box:nth-child(5) p{
    background-color:rgb(210, 180, 140);
}

.box p:hover{
    box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.566);
}

.projects img{
    width:40px;
}



@media(max-width:1484px){
    .sp{
        display:flex;
        flex-direction: column;
        row-gap: 100px;
        width: 100%;
        /* position: relative; */
        /* height:min-content; */
        height: max-content;
    }
    .skills{
        width:100%;
        position: static;
        flex-direction: column;
        margin-top:7%;
        /* height: max-content; */
    }
    .box-container{
        /* position:absolute; */
        position: static;
        top:30%;
        height: min-content;
    }
    .skills h1{
        /* width:100%; */
        position: static;
        justify-content: center;
        /* left:0%; */
        /* position: absolute; */
        /* right:0%; */
        margin-top:3%;
        text-align: center;
    }
    .projects-section{
        position: static;
        width:auto;
    }
    .projects{
        position: static;
        overflow-y: visible;
        height:auto;
        padding: 0%;
        width:auto;   
    }
    .project{
        padding:0;
        column-gap: 20px;
        justify-content: space-around;
    }
    .projects-section h1{
        /* position: absolute; */
    /* background-color: #67ae28; */
    text-align: center;
    font-size: 50px;
    margin-bottom:20px;
    }
}
@media(max-width:350px) {
    .projects{
        row-gap:20px;
    }
    .project{
        /* justify-content: space-around; */
        column-gap:5px;
    }
    .project h2{
        font-size: 25px;
    }
    .project p{
        font-size: 12px;
    }
    .project img{
        width:40px;
    }
    .skills h1{
        margin-top:15%;
    }
}