/* Home page */
.home {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home > .profile {
    width:  30em;
    height: 30em;
    background-color: var(--bg-dim);
    border-radius: 100000px;
    object-fit: cover;
}

.home > .name {
    font-size: 5em;
    text-transform: uppercase;
}

.home > .links {
    display: flex;
    gap: 2em;
}

.home > .links > a > img {
    width:  3em;
    height: 3em;
}






