.MainBody {
    align-content: center;
    background: #000000;
    margin: 0;
    padding: 0;
    font-family: Akira;
    font-size: 25px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

/*h1 {
    background: linear-gradient(
        to right,
        #9d00ff 25%,
        #4d0aab 50%,
        #5b0ac5 75%,
        #7e81f0 100%
    );
    position: relative;
    z-index: 1;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}*/
  
.ProfilePicture {
    position: relative;
    z-index: 2;
    border: 5px solid #7e81f0;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    box-shadow: 0 0 100px rgba(126, 129, 240, 0.5);
}

@media (max-width: 600px) {
    .ProfilePicture {
        width: 150px;
        height: 150px;
    }
    .MainBody {
        font-size: 20px;
    }
    .Text {
        font-size: 20px;
    }
    button {
        font-size: 15px;
        padding: 0.5rem 1.5rem;
    }
}

.Text {
    color: #7e81f0;
    text-align: center;
    text-shadow: #000 0px 5px 3px ;
    position: relative;
    z-index: 1;
}

@font-face { font-family: Akira; src: url('Akira\ Expanded\ Demo.otf'); } 

.container {
    text-align: center;
}

button {
    align-content: center;
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0.9rem 2rem;
    margin: 10px;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 17px;
    border-radius: 500px;
    overflow: hidden;
    background: #00000000;
    backdrop-filter: blur(2px);
    color: #7e81f0;
    transition: transform 0.5s, background 0.5s;
}

button span {
    position: relative;
    z-index: 10;
    transition: color 0.5s;
}

button:hover span {
    color: black;
}

button:hover {
    transform: translateY(-5px);
}

button::before,
button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

button::before {
    content: "";
    background: #00000000;
    backdrop-filter: blur(2px);
    transition: background 0.5s;
}

button:hover::before {
    background: #7e81f0;
}
   
canvas {
    background: #000;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 25%, rgba(23, 25, 59, 1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}