.background {
    background-color: #faf6ef;
    background-image: radial-gradient(rgba(26, 26, 26, 0.08) 1px, transparent 1px);
    background-size: 18px 18px;
}
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1rem;
}
.avatar {
    display: inline-block;
    height: 6rem;
    width: 6rem;
    border-radius: 9999px;
    border: 3px solid #1a1a1a;
    background-color: #ffffff;
}
.title {
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}
.verified {
    color: #1a1a1a;
}
.bio {
    text-align: center;
    font-weight: 500;
    color: #4a4540;
}
.social-icons {
    margin-top: -0.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.social-icon {
    margin: 0.75rem 0.375rem 0;
    height: 2rem;
    width: 2rem;
    color: #1a1a1a;
    transition: transform 150ms ease;
}
.social-icon:hover {
    transform: scale(1.1);
}
.link-container {
    margin-top: 2rem;
}
.link-container > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1rem;
}
.link-header {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}
.link {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    border-radius: 0.75rem;
    border: 2px solid #1a1a1a;
    background-color: #ffffff;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 4px 4px 0 #1a1a1a;
    transition: transform 150ms ease, box-shadow 150ms ease;
}
.link:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #1a1a1a;
}
.link.has-image {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}
.link-image {
    position: absolute;
    left: 0.5rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.5rem;
    background-size: cover;
    background-position: center;
}
.link-text {
    flex: 1 1 0%;
}
.logo {
    height: 1.25rem;
    color: #1a1a1a;
}
.logo-text {
    height: 1.125rem;
    color: #1a1a1a;
}
@media (prefers-reduced-motion: reduce) {
    .link:hover { transform: none; }
}
