* {
    padding: 0%;
    margin: 0%;
    font-family: sans-serif;
    background-color: black;
    cursor: url("cursor.png"),auto;
}
a{
    color: rgb(237, 81, 230);
    text-decoration: none;
}
header {
    background-color: black;
    height: 80px;
    width: 100%;
    position: fixed;
    z-index: 1;
}

#space {
    height: 90px;
    width: 100%;
}

#header1>img {
    width: 190px;
}

#header1 {
    display: flex;
    align-items: center;
}

#parent {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 10px;
}

.Pages {
    color: rgb(237, 81, 230);
    text-decoration: none;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    justify-content: space-around;
    column-gap: 40px;

}

#btn {
    height: 30px;
    width: 90px;
    background-color: rgb(237, 81, 230);
    ;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

#btn>button {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
}


.line {
    height: 2px;
    width: 0px;
    background-color: rgb(237, 81, 230);
    transition: width 1s;
}

.tags:hover>.line {
    width: 100%;
}

#email {
    color: rgb(237, 81, 230);
}

#email:hover {
    color: aquamarine;
}

#download {
    background: radial-gradient(rgb(88, 88, 214), rgb(237, 81, 230));
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    column-gap: 10px;
    border-radius: 10px;
}

#first1 {
    display: flex;
    align-items: flex-start;
    row-gap: 10px;
    flex-direction: column;
    color: aliceblue;
    animation: h1 1s;
}
#first1>h2 {
    font-size: 30px;
}

#first1>h1 {
    font-size: 47px;
    background: linear-gradient(rgb(88, 88, 214), rgb(237, 81, 230));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#first {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 20px;
}

#first2>img {
    width: 300px;
    border: 5px solid rgb(237, 81, 230);
    transform: rotate(0deg);
    box-shadow: 2px 2px 40px rgb(237, 81, 230);
}

.edu {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 3px solid purple;
    width: 60%;
    box-shadow: 2px 2px 40px rgb(85, 85, 194);
    padding: 10px;
    transition-duration: 1s;
    flex-wrap: wrap;
    row-gap: 20px;
}

.edu:hover {
    width: 70%;
}


.edu-contain {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-end;
    color: aliceblue;
    flex-wrap: wrap;
}

#education1 {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    color: aliceblue;

    h1 {
        font-size: 50px;
    }
}

#Education {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: black;
   
}

#container-1 {
    width: 100%;
    align-items: center;
}

#skills-h1 {
    color: aliceblue;
    font-size: 35px;
    width: 110px;
}

.skills {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    row-gap: 10px;
}

.skills-child {
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 20px;
}


#start{
    display: flex;
    align-items: center;
    justify-content: center;
}


#social{
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 20px;

}
.media{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 10px;
    width: 200px;
    height: 200px;
    border: 1px solid white;
    border-radius: 50%;
}
.media>a{
    color: white;
}
#chat{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

#last{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#footer{
    height: 50px;
    width: 100%;
}
#menu{
    display: none;
}
.contact-link{
    color: white;
    text-decoration: none;
}

@media (max-width:615px){
    #parent{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .Pages{
        display: none;
    }
    #btn{
        display: none;
    }
    #email{
        display: none;
    }
    #header1>img{
        transform: translateX(-45px);
    }
    .edu {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 3px solid purple;
    width: 60%;
    box-shadow: 2px 2px 40px rgb(85, 85, 194);
    padding: 10px;
    flex-wrap: wrap;
    row-gap: 20px;
    transition-duration: 1s;

}
.edu-contain {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items:start;
    color: aliceblue;
    flex-wrap: wrap;
}
#menu{
    display: block;
}
.media{
     width: 150px;
    height: 150px;
}


}