header {
    background-color: var(--black-05);
    color: var(--platinum);
    width: 90vw;
    height: 6vh;
    position: fixed;
    top: 2vh;
    left: 5vw;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    backdrop-filter: blur(10px);
}
nav{
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0;
}
header nav ul {
    margin: 0 auto;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
section{
    width: 100vw;
}
#Me{
    height: 90vh;
    margin-top: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;

}
@keyframes animateShadow {
    0%{
        box-shadow: 5px 5px 20px var(--azure), -5px -5px 20px var(--blue-violet),
        5px -5px 20px var(--blue-crayola), -5px 5px 20px var(--majorelle-blue);
    }
    25%{
        box-shadow: 5px 5px 20px var(--blue-violet), -5px -5px 20px var(--blue-crayola),
        5px -5px 20px var(--majorelle-blue), -5px 5px 20px var(--azure);
    }
    50%{
        box-shadow: 5px 5px 20px var(--blue-crayola), -5px -5px 20px var(--majorelle-blue),
        5px -5px 20px var(--azure), -5px 5px 20px var(--blue-violet);
    }
    75%{
        box-shadow: 5px 5px 20px var(--majorelle-blue), -5px -5px 20px var(--azure),
        5px -5px 20px var(--blue-violet), -5px 5px 20px var(--blue-crayola);
    }
    100%{
        box-shadow: 5px 5px 20px var(--azure), -5px -5px 20px var(--blue-violet),
        5px -5px 20px var(--blue-crayola), -5px 5px 20px var(--majorelle-blue);
    }
}

#Me img{
    object-fit: cover;
    height: 70vh;
    border-radius: 1000px;
    box-shadow: 5px 5px 20px var(--azure), -5px -5px 20px var(--blue-violet),
     5px -5px 20px var(--blue-crayola), -5px 5px 20px var(--majorelle-blue);
     animation: animateShadow 3s infinite;
}
#Me_block{
    position: relative;
    padding: 0 15vw;
    height: 70vh;
    width: 30vw;
}
h1{
    font-size: 3rem;
    text-shadow: 1px 1px 5px var(--azure), -1px -1px 5px var(--blue-violet),
    1px -1px 5px var(--blue-crayola), -1px 1px 5px var(--majorelle-blue);
}
#Me div p{
    font-size: 1.5rem;
}
#contact{
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: 20vh;
    font-size: 1.5rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    flex-direction: column;
}
#telegram{
    color: var(--azure);
}
#phone{
    color: var(--neon-blue);
}
#mail{
    color: var(--blue-violet);
}
#projects{
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 10vh;
}
#projects_blocks{
    width: 80vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10vh;
    flex-flow: row wrap;
}
.project_block{
    position: relative;
    min-width: 20vw;
    width: auto;
    height: auto;
    border: 1px solid var(--platinum);
    border-radius: 20px;
    padding: 1vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
a.project_block:hover{
    cursor: pointer;
    box-shadow: 5px 5px 20px var(--azure), -5px -5px 20px var(--blue-violet),
    5px -5px 20px var(--blue-crayola), -5px 5px 20px var(--majorelle-blue);
    transition: 0.5s;
    animation: animateShadow 1s infinite;

}
.stack{
    font-weight: bold;
    color: var(--azure);
}
.AboutProject_text{
    display: none;
}
.AboutProject{
    font-weight: bold;
    color: var(--blue-violet);
}
.done{
    color: var(--neon-blue);
    font-weight: bold;
}
.result{
    color: var(--blue-violet);
    font-weight: bold;
}

.project_link{
    color: var(--platinum);
    font-size: 1.5rem;
    border-radius: 100px;
    padding: 1px 1vw;
    background-image: linear-gradient(to right, var(--azure), var(--blue-violet));
}
footer{
    width: 100vw;
    height: 5vh;
    background-color: var(--black-05);
    color: var(--platinum);
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 1vh;
}

@media (max-width: 800px) {
    #Me{
        height: auto;
        width: 100vw;
    }
    #Me_block{
        padding: 0;
        width: 80vw;
        height: 50vh;
    }
    #Me img{
        height: 40vh;
    }
    .project_block{
        min-width: 100%;
    }
}