@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0 ;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    scrollbar-width: 1px;
    scrollbar-color: var(--bgcolor) #676967;
    scroll-behavior: smooth;
}

:root {
    --bgcolor: rgb(50, 215, 166);
}

.portfolio-header {
    position: sticky;
    top: 0;
    background: transparent;
    width: 100%;
    box-shadow: 0 0 30px rgb(1, 29, 56);
    backdrop-filter: blur(10px);
    z-index: 1;

}

body {
    background: linear-gradient(to right, #000000, rgb(0, 0, 0));
}

#header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.title {
    font-size: x-large;
    font-weight: 700;
    margin-left: 20px;
    background: linear-gradient(to right, #ffffff, var(--bgcolor), rgb(255, 255, 255));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;

}


.title a {
    text-decoration: none;
    cursor: pointer;
    background: linear-gradient(#ffffff, rgb(16, 241, 136));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;

}

.items {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    list-style-type: none;
    margin-right: 20px;
    gap: 20px;
    height: 50px;
}

.items li a {
    cursor: pointer;
    color: var(--bgcolor);
    align-items: center;
    display: flex;
    border-radius: 20px;
    padding: 5px;
    font-weight: 700;
    text-decoration: none;
}

.items li a:hover {
    color: rgb(255, 255, 255);
    background: linear-gradient(rgb(0, 248, 248), rgb(16, 241, 136));
    box-shadow: 0 0 50px var(--bgcolor);
    text-underline-offset: 5px;
    transition: color 50ms linear, box-shadow 300ms linear;
}

.items li a:active {
    transform: translateY(4px);


}

.menu {
    display: none;
}

@media screen and (max-width:800px) {
    .items {
        display: none;
    }

    .title h1 {
        font-size: x-large;
        font-weight: 800;
        margin-left: 0;
    }

    .menu {
        display: block;
        cursor: pointer;
    }

    .portfolio-header {
        padding: 10px;

    }

    .itemss {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        list-style-type: none;
        margin-right: 20px;
        gap: 20px;
        height: 50px;
    }

    .itemss li a {
        cursor: pointer;
        color: white;
        height: 50px;
        align-items: center;
        display: flex;
        padding: 5px;
        font-weight: 700;
        text-decoration: none;

    }

    .itemss li a:hover {
        color: rgb(0, 0, 0);
        background-color: white;
        text-underline-offset: 5px;
        transition: color 300ms linear, background-color 300ms linear, text-underline-offset 200ms linear;
        text-decoration: underline;
    }

}

/* ------------------------------------ */
#home {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
    margin-right: 100px;
}

.home-about {
    color: white;
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 50%;
}

.home-content {
    text-align: left;
    font-weight: 600;
    padding: 10px;
    font-size: large;
}

.home-name {
    color: var(--bgcolor);
    margin-bottom: 20px;
    font-weight: 900;
    font-size: xx-large;
}

.home-role {

    font-weight: 800;
    font-size: xx-large;
    margin-bottom: 20px;
    background: linear-gradient(to right, white, var(--bgcolor), rgb(255, 255, 255));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;

}

.home-image {
    color: white;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.home-image img {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    border: 2px solid var(--bgcolor);
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 15px var(--bgcolor);
    animation: ragu 2.5s ease-in-out infinite;
    z-index: 0;
}

@keyframes ragu {
    0% {
        transform: translateY(-2%);
    }

    50% {
        transform: translateY(2%);
    }

    100% {
        transform: translateY(-2%);
    }
}

.home-image img:hover {
    box-shadow: 0 0 45px var(--bgcolor);
    transition: all .5s ease-in-out;

}

.Hire {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-left: 5px;
}


.hired1 {
    display: flex;
    width: fit-content;
    height: fit-content;
    padding: 10px;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    text-decoration: none;
    color: #000000;
    border: 2px solid #333;
    text-align: center;
    position: relative;
    transition: all .35s;
    border-radius: 10px;
    box-shadow: 0px 0px 15px var(--bgcolor);
    background-color: rgb(255, 255, 255);
}

.hired1 span {
    position: relative;
    z-index: 2;
    font-weight: 800;
}

.hired1:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgb(0, 0, 0);
    transition: all .35s;
    border-radius: 8px;


}

.hired1:hover {
    color: #ffffff;
    box-shadow: 0px 0px 45px var(--bgcolor);

}

.hired1:hover:after {
    width: 100%;
}


.hired2 {
    display: flex;
    width: fit-content;
    height: fit-content;
    padding: 10px;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid #333;
    text-align: center;
    position: relative;
    transition: all .35s;
    border-radius: 10px;
    box-shadow: 0px 0px 15px var(--bgcolor);
}

.hired2 span {
    position: relative;
    z-index: 2;
    font-weight: 800;

}

.hired2:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    transition: all .35s;
    border-radius: 8px;

}

.hired2:hover {
    color: #000000;

    box-shadow: 0px 0px 45px var(--bgcolor);
}

.hired2:hover:after {
    width: 100%;

}

.sosial {
    padding: 10px;
    display: flex;
    font-size: large;
    margin-top: 10px;
}

.sosial-icon {
    list-style-type: none;
    display: flex;
    gap: 20px;
    font-size: x-large;

}

.sosial-icon li a {
    color: white;
    text-decoration: none;


}

.sosial-icon li {
    border: 2px solid var(--bgcolor);
    padding-left: 7px;
    padding-right: 7px;
    padding-top: 2px;
    padding-bottom: 1px;
    border-radius: 50%;
    height: fit-content;
    width: fit-content;
    box-shadow: 0 0 5px var(--bgcolor);

}

.sosial-icon li:hover {
    box-shadow: 0 0 45px rgb(51, 192, 213);
    transform: translateY(-9%) scale(1.102);
    cursor: pointer;

}

.sosial-icon li:nth-child(1):hover {
    background-color: rgb(10, 102, 194);
    box-shadow: 0 0 45px rgb(10, 102, 194);
    border: 2px solid rgb(10, 102, 194);
    transition: all .35s ease-out;

}

.sosial-icon li:nth-child(2):hover {
    background-color: rgb(10, 194, 41);
    box-shadow: 0 0 40px rgb(10, 194, 41);
    border: 2px solid rgb(10, 194, 41);
    transition: all .35s ease-out;

}

.sosial-icon li:nth-child(3):hover {
    background-color: rgb(100, 99, 99);
    box-shadow: 0 0 45px rgb(187, 190, 188);
    border: 2px solid rgb(100, 99, 99);
    transition: all .35s ease-out;

}

.sosial-icon li:nth-child(4):hover {
    background: linear-gradient(rgb(226, 33, 49), rgb(226, 78, 33));
    box-shadow: 0 0 30px rgb(226, 33, 33);
    border: 2px solid rgb(226, 33, 33);
    transition: all .35s ease-out;


}

@media screen and (max-width:800px) {


    #home {
        display: flex;
        flex-wrap: wrap;
        height: fit-content;
        align-items: start;
        justify-content: left;
        margin-left: 0px;
        margin-right: 0px;
        width: 100%;
    }

    .home-about {
        color: white;
        display: flex;
        flex-direction: column;
        padding: 5px;
        width: 100%;
        margin-left: 10px;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .home-content {
        font-weight: 500;
        font-size: small;
        text-align: left;
        padding: 0;
    }

    .home-name {
        color: var(--bgcolor);
        margin-bottom: 10px;
        font-weight: 700;
        font-size: large;
    }

    .home-role {
        background: linear-gradient(to right, white, var(--bgcolor), rgb(255, 255, 255));
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 700;
        font-size: medium;
        margin-bottom: 10px;
    }

    .home-image {
        color: white;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
    }

    .home-image img {
        height: 250px;
        width: 250px;

    }

    .sosial {
        padding: 10px;
        display: flex;
        font-size: medium;
        margin-top: 20px;
    }

    .sosial-icon {
        list-style-type: none;
        display: flex;
        gap: 20px;
        font-size: large;

    }

    .sosial-icon li {
        border: 2px solid var(--bgcolor);
        border-radius: 50%;
        height: fit-content;
        width: fit-content;
        box-shadow: 0 0 5px var(--bgcolor);

    }

}

/* ---------------------------------------------------------- */
#about {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
    margin-right: 100px;

}

.btnn {
    background-color: var(--bgcolor);
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 20px;
    width: 40%;
    margin-top: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 25px var(--bgcolor);
    border: 1px solid white;
    text-align: center;
    text-decoration: none;
}


.btnn:hover {
    background-color: var(--bgcolor);
    box-shadow: 0px 0px 55px var(--bgcolor);
}

.about-image {
    color: white;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 0;
}

.about-image img {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    border: 2px solid var(--bgcolor);
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 15px var(--bgcolor);
    animation: ragu 2.5s ease-in-out infinite;
    z-index: 0;
}

.about-image img:hover {
    box-shadow: 0 0 45px var(--bgcolor);

}

.abut-content {
    display: flex;
    width: 50%;
    flex-direction: column;
}

.about_me {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    justify-content: center;
}

.abot-name {
    color: var(--bgcolor);
    font-size: xx-large;
    font-weight: 900;
    margin-bottom: 20px;
}

.about-role {
    font-weight: 800;
    font-size: xx-large;
    margin-bottom: 20px;
    background: linear-gradient(to right, white, var(--bgcolor), rgb(255, 255, 255));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-content {
    color: white;
    font-size: large;
    padding: 10px;
}

.abou-mee {
    font-size: xx-large;
    background: linear-gradient(to right, #ffffff, var(--bgcolor), rgb(255, 255, 255));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    margin-bottom: 100px;
}

.experience {
    color: white;
}

@media screen and (max-width:800px) {
    .about-image img {
        display: none;
    }

    .abut-content {
        width: 100%;
        font-size: small;
        margin-top: 30px;
    }

    .about-content {
        font-weight: 500;
        font-size: small;
        padding: 0;
        margin-top: 0;
    }


    .about_me {
        margin-right: 0px;
        justify-content: left;
    }

    #about {
        height: fit-content;
        margin-top: 10px;
        margin-right: 0px;
        margin-left: 10px;
    }

    .abot-name {
        color: var(--bgcolor);
        font-size: large;
        font-weight: 700;
        margin-bottom: 0;
    }

    .about-role {
        color: transparent;
        font-size: large;
        font-weight: 700;
        margin-bottom: 0;
        background: linear-gradient(to right, white, var(--bgcolor), rgb(255, 255, 255));
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        color: transparent;
    }



    .btnn {
        background-color: var(--bgcolor);
        border: none;
        color: white;
        padding: 10px 20px;
        cursor: pointer;
        font-size: medium;
        width: 60%;
        margin-top: 30px;
        border-radius: 20px;
        box-shadow: 0px 0px 25px var(--bgcolor);
        border: 1px solid white;
        text-align: center;
        text-decoration: none;
    }


    .btnn:hover {
        background-color: var(--bgcolor);
        box-shadow: 0px 0px 55px var(--bgcolor);
    }
}

/* --------------------------------------------------------------- */
#project {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 50px;

}

.projects-title {
    font-size: xx-large;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, var(--bgcolor), rgb(255, 255, 255));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 3%;

}

.pro_container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;


}

.pro-small_container {
    position: relative;
    border-radius: 20px;
    border: solid 2px var(--bgcolor);
    box-shadow: 0px 0px 15px var(--bgcolor);
}

.pro-small_container:hover {
    box-shadow: 0px 0px 35px var(--bgcolor);
    transform: scale(1.02);
    transition-duration: .7s;
}

.pro-small_container:hover .pro-content {
    opacity: 1;
    transition: all .45s ease-in;
}

.pro-image {
    width: fit-content;
    width: 350px;
    height: 230px;
}

.pro-image img {
    width: 350px;
    height: 230px;
    border-radius: 20px;
}

.pro-image img {
    width: 350px;
    height: 230px;
    border-radius: 20px;
}

.overlay {
    width: 350px;
    height: 230px;
    background-color: rgba(0, 0, 0, 0.479);
    position: absolute;
    top: 0;
    border-radius: 20px;


}

.pro-content {
    width: 350px;
    height: 230px;
    position: absolute;
    top: 0;
    color: #ffffff;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    opacity: 0;
}

.visit-site {
    padding: 10px;
    background-color: var(--bgcolor);
    color: #000000;
    text-decoration: none;
    border-radius: 20px;
    border: solid 2px var(--bgcolor);
}

.visit-site:hover {

    background-color: var(--bgcolor);
    color: #ffffff;
    text-shadow: #000000 1px 1px;
    border: solid 2px var(--bgcolor)
}

.visit-site:active {
    transform: translateY(4px);
}


@media screen and (max-width:800px) {

    #project {
        
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 30px;
        margin-top: 0px;
        padding-top: 0px;
    }

    .projects-title {
        font-size: x-large;
        font-weight: 700;
        margin-top: 50px;
    }

    .pro_container {
        display: flex;
        align-items: normal;
        justify-content: space-evenly;
        height: 100%;
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 0px;

    }

    .pro-small_container {
        position: relative;
        border-radius: 20px;
        border: solid 2px var(--bgcolor);
        box-shadow: 0px 0px 15px var(--bgcolor);
        width: 350px;
        height: 230px;
        
    }
    .pro-small_container:hover .pro-content {
        opacity: 1;
        transition: all .45s ease-in;
    }
    
    .pro-image {
        width: 350px;
        height: 230px;
    }

    .pro-image img {
        height: 100%;
        width: 100%;
        border-radius: 20px;
    }

    .overlay {
        width: 350px;
        height: 230px;
        background-color: rgba(0, 0, 0, 0.479);
        position: absolute;
        top: 0;
        border-radius: 20px;
        

    }

    .pro-content {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 5%;
        left: 0%;
        font-size: small;
        font-weight: 800;
        color: #ffffff;
        opacity: 1;
        

    }

    .pro-content p {
        font-size: small;
        font-weight: 500;
        color: #d7d7d7;
        text-shadow: 1px 1px black;

    }

    .small-hide {
        display: none;
    }

    .arrow {
        display: none;
    }

    .visit-site {
        margin-top: 10px;
        padding: 10px;
        color: #000000;
        background-color: var(--bgcolor);
        border-radius: 20px;
        border: solid 2px var(--bgcolor);
        box-shadow: 0px 0px 35px var(--bgcolor);
        cursor: pointer;

    }
}

/* ----------------------------------------------------- */

#resume {
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
}

.rdetails {
    display: flex;
    width: 80%;
    height: fit-content;
    justify-content: center;

}

.rtitle {
    padding: 1%;
    margin-top: 2%;
    font-size: xx-large;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, var(--bgcolor), rgb(255, 255, 255));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    

}

.education {
    width: 50%;
    border: solid 2px var(--bgcolor);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 0px 15px var(--bgcolor);
    transition: transform .35s ease-in-out, box-shadow .35s ease-in-out;

}

.education:hover {
    transform: translateY(-3%) scaley(1.02);
    box-shadow: 0px 0px 45px var(--bgcolor);
}

.edu-title {
    padding: 3%;
}

.titele-skill {
    display: flex;
    align-items: center;
    gap: 3%;
}

.skill {
    width: 40%;
    border: solid 2px var(--bgcolor);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 0px 15px var(--bgcolor);
    transition: transform .35s ease-in-out, box-shadow .35s ease-in-out;
}

.skill:hover {
    transform: translateY(-3%) scaley(1.02);
    box-shadow: 0px 0px 45px var(--bgcolor);
}

.skill-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0px 10px 0px;
    text-align: left;
    position: relative;
}

.skill-value h1 {
    margin: 10px 0px 10px 0px;
}

.full {
    width: 80%;
    background-color: #333;
    height: 8px;
    position: relative;
}

.tooltip {
    position: absolute;
    top: -25px;
    right: 0;
    background-color: #555;
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    font-weight: 500;
    display: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.full:hover .tooltip {
    display: block;
    opacity: 1;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 10px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.half {
    width: 85%;
    height: 8px;
    background-color: var(--bgcolor);
    border-right: 10px solid white;
    border-right-style: dashed;

}

.half:hover,
.half1:hover,
.half2:hover,
.half3:hover,
.half4:hover,
.half5:hover,
.half6:hover {
    box-shadow: 0px 0px 35px var(--bgcolor);

}

.half1 {
    width: 75%;
    height: 8px;
    background-color: var(--bgcolor);
    border-right: 10px solid white;
    border-right-style: dashed;


}

.half2 {
    width: 80%;
    height: 8px;
    background-color: var(--bgcolor);
    border-right: 10px solid white;
    border-right-style: dashed;

}

.half3 {
    width: 87%;
    height: 8px;
    background-color: var(--bgcolor);
    border-right: 10px solid white;
    border-right-style: dashed;
}

.half4 {
    width: 75%;
    height: 8px;
    background-color: var(--bgcolor);
    border-right: 10px solid white;
    border-right-style: dashed;
}

.half5 {
    width: 80%;
    height: 8px;
    background-color: var(--bgcolor);
    border-right: 10px solid white;
    border-right-style: dashed;
}

.half6 {
    width: 80%;
    height: 8px;
    background-color: var(--bgcolor);
    border-right: 10px solid white;
    border-right-style: dashed;
}



.sec {
    text-align: left;
    padding: 2%;
    margin: 5%;
    border: #333 .5px solid;
}

@media screen and (max-width:600px) {
    .rdetails {
        width: 100%;
        flex-wrap: wrap;
    }
    .education {
        width: 100%;
        border: none;
        box-shadow: none;
    }
    
    .skill {
        width: 100%;
        border: none;
        box-shadow: none;
    }
    .education:hover {
        transform: translateY(0%) scaley(1);
        box-shadow: 0px 0px 0px var(--bgcolor);
    }
    .skill:hover {
        transform: translateY(0%) scaley(1);
        box-shadow: 0px 0px 0px var(--bgcolor);
    }
    .sec h1{
        font-size: medium;
        word-spacing: 5px;
        font-weight: 500;
    }
    .sec p{
        font-size: medium;
        word-spacing: 5px;
        font-weight: 500;
        width: fit-content;
        display: inline;
    }
    .sec{
        display: flex;
        flex-direction: column;
    }
    .edu{
        display: none;
        
    }
    .titele-skill h1{
        font-size: large;
        padding-right: 10px;
        font-weight: 500;
    }
    .edu-title{
        padding-bottom: 0;
       
    }
    .rtitle{
        margin-top: 50px;
    
    }
    
}
/* ------------------------------------------ */
#contact {
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
    margin-left: 300px;
    margin-right: 300px;
}

input[type=text],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=email] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: var(--bgcolor);
    box-shadow: 0px 0px 15px var(--bgcolor);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: var(--bgcolor);
    box-shadow: 0px 0px 45px var(--bgcolor);
}

.container {
    border-radius: 5px;
    background-color: #000000;
    padding: 20px;
    color: white;

}

.contact-title {
    font-size: xx-large;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, var(--bgcolor), rgb(255, 255, 255));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media screen and (max-width:800px) {
    #contact {
        height: fit-content;
        margin-top: 50px;
        margin-left: 10px;
        margin-right: 10px;
        
    }
}

/* ------------------------------------------------- */
.foot {
    height: fit-content;
    background: rgba(0, 0, 0, 0.856);
    border-top: 1px #676967 solid;

}

.foot-info {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.foot-detail {
    list-style-type: none;
}

.foot-infooo {
    color: rgb(255, 255, 255);
    margin-left: 10px;
    text-align: center;

}

.contact-me {
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.copy-right {
    color: white;
    text-align: center;
    background-color: black;
    margin-top: 10px;
}




.itemds li a {
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-weight: 800;
    margin-bottom: 20px;
}

.itemds li {

    margin-bottom: 20px;
    margin-top: 10px;
}

.sideing {
    position: absolute;
    right: 0;
    background-color: rgb(0, 0, 0);
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: -50%;
    top: 0;
    height: 100vh;
    gap: 30px;
    z-index: 100;
    transition-duration: 1s;

}

#closing button {
    padding: 10px;
    background-color: var(--bgcolor);
    border-radius: 10px;
    border: none;
    color: rgb(0, 0, 0);
    font-weight: 800;
}


@media screen and (max-width:600px) {
    .abou-mee {
        font-size: x-large;
        background: linear-gradient(to right, #ffffff, var(--bgcolor), rgb(255, 255, 255));
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 700;
        margin-bottom: 0px;
    }
}

@media screen and (max-width:800px) {
    .abou-mee {
        font-size: x-large;
        background: linear-gradient(to right, #ffffff, var(--bgcolor) rgb(255, 255, 255));
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 700;
        margin-bottom: 0px;
    }
}