body {
    background: rgb(98, 36, 241);
    background: linear-gradient(151deg, #6224f1 19%, #67e1d6 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 5vh;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
}

img {
    border-radius: 50%;
}

.profile-picture {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1%;
    height: auto;
    max-width: 100px;
}
    
.profile {
    text-align: center;
    font-size: 15px;
    letter-spacing: 2px;   
    margin: 0;
}

a.profile:hover{
    color: #000;
}

.name{
    padding: 30 30 7 30px;
    background: transparent;
    color: white;
}

.title {
    padding: 7 30 30 30px;
    font-weight: normal;
}

.header{
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    max-width: 90vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 105%;
}

.links {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px) saturate(120%);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    width: 290px;
    max-width: 60vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
}

a {
    background: white;
    color: black;
    transition: color 0.5s;
}

a.links:hover {
    color: #fff;
    background: transparent;
}

a i:hover{
    color: #fbdd3b;
}

.bottom-text {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    font-weight: bold;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}