body{
    background-color: black;
    z-index: 0;
    top: 0;
    left: 0;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}
.back{
    width: 60px;
    aspect-ratio: 1/1;
    filter: invert();
    position: relative;
    top: 5vh;
    left: 5vw;
    padding: 25px;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.25s;
    user-select: none;
}
.back:hover{
    transform: scale(1.1);
}
.back:active{
    transform: scale(0.99);
}
.head{
    color:white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 100;
    font-size: 5vh;
    z-index: 2;
    position: relative;
    vertical-align: top;
    user-select: none;
    justify-self: center;
}
section{
    justify-self: center;
    display: flex;
    gap: 2vw;
    z-index: 2;
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
}
.links{
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(50px);
    border-radius: 25px;
    width: 10vw;
    justify-content: center;
    text-align: center;
    margin-top:200px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.15s;
    user-select: none;
}
.links:hover{
    transform: scale(1.1);
}
.links:active{
    transform: scale(0.99);
}
.github{
    color: lightblue;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 3vh;
    font-weight: 200;
    text-align: center;
    text-decoration: none;
}
.insta{
    color: lightblue;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 3vh;
    font-weight: 200;
    text-decoration: none;
}
.linked{
    color: lightblue;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 3vh;
    font-weight: 200;
    text-decoration: none;
}
.email{
    color: lightblue;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 3vh;
    font-weight: 200;
    text-decoration: none;
}
.container{
    animation: moveShape 20s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
    z-index: 0;
    position:absolute;
    max-width: 50vw;
    max-height: 50vh;
}
.blob{
    width: 500px;
    aspect-ratio: 1/1;
    background: linear-gradient(rgba(20,202,238,0.5) 0%, rgba(41, 116, 221, 0.8) 40%, rgba(126, 26, 247, 0.8) 100%);
    border-radius: 100% 70% 70% 10% / 10% 50% 90% 90%;
    filter: blur(50px);
    animation: changeShape 6s linear infinite, rotateShape 12s linear infinite alternate;
    z-index: 0;
}
@keyframes rotateShape {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
@keyframes moveShape {
    0%, 100%{
        transform: translate(20%, 0);
    }
    25%{
        transform: translate(35%, 10vh);
    }
    50%{
        transform: translate(45%, 20vh);
    }
    75%{
        transform: translate(25%, 30vh);
    }
}
@keyframes changeShape {
    0%, 100%{
        border-radius: 100% 70% 70% 10% / 10% 50% 90% 90%;
    }
    25%{
        border-radius: 40% 65% 50% 50% / 40% 35% 35% 65%;
    }
    40%{
        border-radius: 35% 65% 65% 35% / 65% 50% 50% 25%;
    }
    60%{
        border-radius: 40% 65% 50% 50% / 30% 30% 70% 75%;
    }
    80%{
        border-radius: 40% 60% 40% 60% / 50% 50% 50% 60%;
    }
}
@media(max-width: 1000px){
    body{
        overflow: hidden;
    }
    .back{
        width: 5vw;
        padding: 2vw;
        top: 5vh;
        left:5vw;
    }
    .links{
        display: grid;
        align-items: center;
        gap: 2.55vh;
        font-size: 3vw;
        width: 15vw;
        justify-items: center;
    }
    section{
        justify-items: center;
        vertical-align: middle;
        display: grid;
        grid-template-columns: 10vw 10vw;
        grid-template-rows: 15vw 15vw;
        grid-row: auto auto;
        grid-row-gap: 10vh;
        grid-column-gap: 25vw;
    }
    .blob{
        width: 250px;
    }
}
@media(max-width: 700px){
    body{
        overflow:hidden;
    }
    .back{
        width: 7vw;
        padding: 2vw;
        top: 5vh;
        left: 5vw;
    }
    .links{
        display: grid;
        align-items: center;
        gap: 2.55vh;
        font-size: 5vw;
        width: 15vw;
        justify-items: center;
    }
    section{
        justify-items: center;
        vertical-align: middle;
        display: grid;
        grid-template-columns: 20vw 20vw;
        grid-template-rows: 20vw 20vw;
        grid-row: auto auto;
        grid-row-gap: 10vh;
        grid-column-gap: 25vw;
        bottom: 5vh;
    }
}