body {
    background-color: #D9D6CF;
    color: #2C2C2C;
    font-family: 'Inter', sans-serif
}

.profile-photo {
    margin-top: 5px;
    border-radius: 50%;
    width: 250px;
    height: auto;
    margin-left: 10px;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: 5px;
    margin-right: 10px;
}

h2 {
    font-family: 'Clash Grotesk', sans-serif;
}

h4 {
    margin-top: 0;
    padding-top: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.bio {
    margin-top: 5px;
    margin-left: 10px;
}

.footer {
    text-align: center;
    color: #5A5A5A;
    background-color: #BFBAB0;
    border-top: 1px solid #C0BEB8;
    margin-top: 60px;
}

.main-div {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.my-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.my-socials img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
}

.my-socials img:hover {
    transform: scale(1.2);
}