/*body
{
    height: 100vh;
    background: rgb(29,12,95);
    background: linear-gradient(48deg, rgba(29,12,95,1) 0%, rgba(42,0,134,1) 13%, rgba(37,0,93,1) 57%, rgba(115,0,131,1) 91%, rgba(119,0,133,1) 100%);
}*/

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.profile {
    text-align: center;
    padding: 20px;
}

.profile-picture img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8%;
    opacity: 1;
    transition: opacity 0.15s ease;
}

#profileName {
    margin: 2rem auto;

    opacity: 1;
    transition: opacity 0.15s ease;
}

#firstAka {

    opacity: 1;
    transition: opacity 0.15s ease;
}

.profile h1 {
    margin-top: 20px;
    font-size: 2em;
}

/*
Profile Links, Buttons that have an image and a link
*/
.profile-links a {
    display: inline-block;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    text-decoration: none;
    color: var(--pico-primary);
}

.profile-links a button img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.profile-links a button {
    border-radius: 50%;
    padding: 0.1rem;
}

#profilePicture {
    z-index: 2;
}

#profilePictureBlur {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
}

#profilePictureFrame {
    position: absolute;
    z-index: 1;
    margin-top: -16px;
    margin-left: -16px;
    width: 182px;
    height: 182px;
    object-fit: cover;
}

button:hover {
    cursor: pointer;
    transform: scale(1.1);
}

button {
    transition: all 0.3s ease;
}

dialog {
    opacity: 1;
    transition: opacity 0.3s ease;
}
