body {
    background-color: #008080;
    font-family: 'MS Sans Serif', Geneva, sans-serif;
    color: black;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 100vh;
    user-select: none;
}

.window {
    background-color: #C0C0C0;
    width: 300px;
    border: 2px solid #000;
    box-shadow: 2px 2px 0px #FFFFFF, 4px 4px 0px #808080;
    position: absolute;
    cursor: default;
}

.title-bar {
    background: linear-gradient(to right, #000080, #0000FF);
    color: white;
    padding: 2px 5px;
    font-weight: bold;
    text-align: left;
    height: 20px;
    line-height: 20px;
    border-bottom: 2px solid #FFFFFF;
    box-shadow: inset -1px -1px 0px #000, inset 1px 1px 0px #808080;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-bar button {
    background-color: #C0C0C0;
    border: none;
    width: 16px;
    height: 16px;
    font-weight: bold;
    color: black;
    cursor: pointer;
    display: inline-block;
    line-height: 16px;
    padding: 0;
    margin: 0;
    text-align: center;
}

.title-bar button:hover {
    background-color: #FF0000;
    color: white;
}

.content {
    padding: 10px;
    position: relative;
    background-color: #C0C0C0;
    box-shadow: inset 1px 1px 0px #FFFFFF, inset -1px -1px 0px #808080;
}

.button {
    background-color: #C0C0C0;
    border: 2px solid #000;
    padding: 2px 10px;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    box-shadow: 1px 1px 0px #FFFFFF, -1px -1px 0px #808080;
}

.button:active {
    border-style: inset;
}

.taskbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-color: #C0C0C0;
    border-top: 2px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    box-shadow: 0px 0px 0px 1px #FFFFFF, 2px 2px 0px 1px #808080 inset;
}

.start-button {
    background-color: #C0C0C0;
    border: 2px solid #000;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    box-shadow: 1px 1px 0px #FFFFFF, -1px -1px 0px #808080;
    font-size: 12px;
}

.start-button img {
    margin-right: 5px;
}

.start-button:active {
    border-style: inset;
}

.clock {
    font-weight: bold;
    padding: 0 10px;
    font-size: 12px;
    box-shadow: 1px 1px 0px #FFFFFF, -1px -1px 0px #808080;
}

.globe-icon {
    display: inline-block;
    width: 64px;
    height: 64px;
    vertical-align: middle;
    background-image: url('img/globe.gif');
    background-size: cover;
    margin-right: 5px;
}

#desktop {
    position: relative;
    width: 100vw;
    height: calc(100vh - 40px);
    background-color: #008080;
    display: flex;
    align-items: flex-start;
    padding: 20px;
}

.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    cursor: pointer;
    text-align: center;
    color: white;
    font-family: 'MS Sans Serif', Geneva, sans-serif;
}

.desktop-icon img {
    margin-bottom: 5px;
}

.desktop-icon div {
    font-size: 12px;
}
