body {
    background-image: url('../img/wallpaper.jpg');
    background-size: cover;
    background-position: center;
    font-family: 'MS Sans Serif', Geneva, sans-serif;
    margin: 0;
    padding: 20px;
    color: #000;
    min-height: 100vh;
}

.window {
    background-color: #C0C0C0;
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.title-bar {
    background: linear-gradient(to right, #000080, #1084d0);
    color: white;
    padding: 2px 5px;
    font-size: 12px;
    font-weight: bold;
    border-bottom: 1px solid #808080;
    display: flex;
    align-items: center;
}

.ie-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.title-text {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.title-bar-buttons {
    display: flex;
}

.title-bar-buttons button {
    background-color: #C0C0C0;
    border: 1px solid #000;
    margin-left: 2px;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
}

.toolbar {
    background-color: #C0C0C0;
    border-bottom: 1px solid #808080;
    padding: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toolbar-left, .toolbar-right {
    display: flex;
    align-items: center;
}

.toolbar-icon {
    width: 20px;
    height: 20px;
    margin: 0 2px;
    cursor: pointer;
}

.toolbar-center {
    flex-grow: 1;
    margin: 0 10px;
}

.address-bar {
    width: 100%;
    padding: 2px;
    font-size: 12px;
    border: 1px solid #000;
    background-color: #FFF;
}

.content {
    background-color: #0c0c0c;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.avatar-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 1px solid #000;
}

.content a {
    color: #0000FF;
    text-decoration: underline;
}

.content a:hover {
    color: #FF0000;
}

h1 {
    color: #e7e7e7;
}

p {
    color: #e7e7e7;
}

.status-bar {
    background-color: #D4D4D4;
    padding: 2px 5px;
    font-size: 12px;
    border-top: 1px solid #FFF;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .window {
        width: 100%;
        margin: 0;
    }

    .title-bar {
        font-size: 10px;
        padding: 2px;
    }

    .ie-icon {
        width: 14px;
        height: 14px;
    }

    .title-bar-buttons button {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .toolbar-icon {
        width: 18px;
        height: 18px;
    }

    .address-bar {
        font-size: 10px;
    }

    .content {
        padding: 10px;
        font-size: 12px;
    }

    .avatar-image {
        width: 100px;
        height: 100px;
    }

    .status-bar {
        font-size: 10px;
    }
      }
