main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#profile-img {
    margin-top: 100%;
    height: 150px;
    width: 150px;
    border-radius: 50%;
}

#profile-img:hover {
    opacity: 1;
}

#navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.nav-item {
    text-decoration: none;
    color: black;
}

#description {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

.icon {
    width: 30px;
    height: 30px;
}
