body {
    margin: 0;
    margin-left: 20%;
    margin-right: 20%;
    text-align: center;
}

.pronouns {
    font-weight: bold;
}

html {
    background: linear-gradient(45deg, #1b1721, #6d6099);
    background-attachment: fixed;
}

#profile-picture {
    height: 13rem;
    width: 13rem;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.part {
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

header,
section {
    margin-top: 1%;
}

header {
    padding-left: 4px;
    padding-right: 4px;
}

#socials {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1em;
    padding: 1em;
    text-align: center;
    justify-content: center;
    align-content: center;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5em;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.social-link i {
    font-size: 2rem;
    margin-bottom: 0.5em;
}

.social-link a {
    text-decoration: none;
    color: white;
}

.social-divider {
    grid-column: 1 / -1;
    border: none;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    margin: 0.5em 0;
    opacity: 0.6;
}

.social-link-wide {
    grid-column: 1 / -1;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 0.8em 1em;
    font-size: 1rem;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.social-link-wide i {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.social-link-wide:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

h1 {
    font-size: 250%;
    line-height: 0.2;
}

html {
    color: white;
}

@media (max-width: 1000px) {
    #socials {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 820px) {
    body {
        margin-left: 20px;
        margin-right: 20px;
    }

    header,
    section {
        margin-top: 20px;
    }

    .social-link {
        flex-direction: row;
        gap: 0.5em;
    }

    .social-link i {
        margin-bottom: 0;
        font-size: 1.5rem;
    }
}
