body {
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 8%);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.portfolio-container {
    width: 300px;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    background-color:hsl(0, 0%, 12%);
    border-radius: 7px;
}



#profile-name {
    color: whitesmoke;
    font-weight:700;
    font-size: 1.6em;
    margin-bottom: 5px;
}

#address {
    margin-top: 0px;
    color: hsl(75, 94%, 57%);
    margin-bottom: 20px;
    
}

.profile-picture-text {
    display: flex;
    flex-direction: column;
}

div[data-occupation] {
    color: white;
} 
.portfolio-container img {
    width: 30%;
    object-fit: cover;
    max-width: 100%;
    margin-top: 20px;
    border-radius: 50%;
}

.social-media-list {
    list-style: none;
    display: flex;
    padding: 10px;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
   /* border: 2px solid red; */
    width: 80%;
    

}



a {
    color: rgb(250, 250, 251);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition */
    display: inline-block;
}

a:hover {
    transform: rotate(10deg);
}
.social-media-list li {
    border: 1px solid hsl(0, 0%, 20%);
    border-radius: 7px;
    padding: 15px;
    text-align: center;
    width: 100%;
    margin-left: 0px;
    color: white;
    font-weight: bold;
    font-size: small;
    background-color:hsl(0, 0%, 20%);
}  

.social-media-list li:hover {
    background-color: hsl(75, 94%, 57%);
}
