body {
    background-color: #008080;
    background-image: url('../img/bg.bmp'); /* Your local image */
    background-repeat: repeat; /* This makes it tile */
    margin: 20px;
    font-family: "MS Sans Serif", Tahoma, sans-serif;
    color: black;
}
.container {
    max-width: 800px;
    margin: 0 auto;
}
.footer {
    font-size: 10px;
    text-align: center;
    margin-top: 20px;
}
img.gif {
    border: 2px solid #000;
    margin: 10px 0;
    max-width: 300px;
}
.profile-section {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    position: relative;
}
.profile-pic {
    border: 2px outset #dfdfdf;
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.profile-header {
    position: absolute;
    top: 0;
    left: 120px; /* image width + gap */
}
.profile-bio {
    position: absolute;
    bottom: 0;
    left: 120px;
}
/* Improved Windows 98 buttons */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}
.win98-button {
    min-width: 120px;
    font-size: 12px;
}
.link-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}
/* Text styling */
.window-title {
    font-size: 16px;
    font-weight: bold;
}
.section-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 5px 0;
}