body {
    background-color: #ffffff;
    background-image: url('https://sadhost.neocities.org/images/tiles/move_heart.gif');
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    color: #000000;
}
.container {
    max-width: 960px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
    border: 2px solid #fd89d2;
    box-shadow: 0 0 10px #fd89d2;
}
.header {
    background-color: #fd89d2;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    border: 2px solid #fd89d2;
    margin-bottom: 20px;
}
.header h1 {
    margin: 0;
    font-size: 2.5em;
}
.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}
.sidebar {
    flex: 1;
}
.main-content {
    flex: 2;
}
.box {
    background-color: #ffffff;
    border: 2px solid #fd89d2;
    padding: 15px;
    margin-bottom: 30px;
    color: #000000;
    word-wrap: break-word;
}
.box h3 {
    background-color: #fd89d2;
    color: #000000;
    padding: 5px;
    margin: -15px -15px 15px -15px;
    text-align: center;
}
.profile-box .profile-name {
    background-color: #fd89d2;
    color: #000;
    padding: 5px;
    margin: -15px -15px 15px -15px;
    text-align: center;
}
.profile-box .profile-content {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.profile-box .profile-content img {
    width: 150px;
    height: auto;
    border: 2px solid #fd89d2;
    object-fit: cover;
    margin-bottom: 20px;
}
.profile-box .profile-text {
    flex-grow: 1;
}
.profile-box .profile-text p {
    margin: 0;
}
.profile-box .profile-mood, .profile-box .profile-view-links {
    margin-top: 10px;
}
.socials-box h3 {
    background-color: #fd89d2;
    color: #000;
    padding: 5px;
    margin: -15px -15px 15px -15px;
    text-align: center;
}
.socials-list {
    list-style-type: none;
    padding: 0;
}
.socials-list li {
    margin-bottom: 5px;
}
.socials-list li a {
    color: #fd89d2;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.socials-list img {
    border: none;
}
.friends-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.friends-list li {
    width: 80px;
    text-align: center;
}
.friends-list img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border: 2px solid #fd89d2;
}
nav ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
nav ul li {
    padding-right: 10px;
}
nav {
    margin-top: 20px;
    margin-bottom: 40px;
}


.interests-box table {
    width: 100%; 
    border-collapse: collapse; 
}
.interests-box td {
    padding: 5px;
    border: 1px solid #fd89d2; 
    vertical-align: top;
}
.interests-box .interest-label {
    font-weight: bold;
    color: #fd89d2; 
    width: 30%; 
    text-align: right;
    padding-right: 10px;
}


@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
    .sidebar,
    .main-content {
        width: 100%;
        min-width: 0;
    }
    .profile-box .profile-content {
        flex-direction: column;
        align-items: center;
    }
    .profile-box .profile-content img {
        width: 100%;
        max-width: 150px;
        margin: 0 auto 20px auto;
    }
}