html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    background-color: #3B6EA5;
    font-family: Arial, sans-serif;
}

#taskbar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 29px;
    background-color: #D4D0C7;

    z-index: 100;
}

#clock {
    position: absolute;
    right: 2px;
    top: 1px;
    height: 25px;
    padding: 0 8px;

    border: 1px solid #837F7C;

    display: flex;
    align-items: center;

    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #000000;
}

#start-button {
    position: absolute;
    left: 0;
    top: 3px;

    width: 55px;
    height: 22px;

    cursor: pointer;
    user-select: none;
}

#start-menu {
    position: fixed;

    left: 0;
    bottom: 29px;

    width: 254px;
    height: 311px;

    background-image: url("start_menu.png");
    background-repeat: no-repeat;
    background-size: 254px 311px;

    display: none;

    z-index: 200;
}

.start-item {
    display: flex;
    align-items: center;

    width: 216px;
    height: 24px;

    color: black;
    text-decoration: none;

    font-family: Tahoma;
    font-size: 18px;

    position: absolute;
    left: 25px;
}

.start-item:nth-child(1) {
    top: 4px;
}

.start-item:nth-child(2) {
    top: 29px;
}

.start-item:nth-child(3) {
    top: 54px;
}

.start-item:hover {
    background-color: #316AC5;
    color: white;
}

.start-item img {
    width: 22px;
    height: 22px;

    object-fit: contain;

    margin-right: 6px;

    flex-shrink: 0;
}

#notepad {
    position: absolute;

    left: 20px;
    top: 20px;

    width: 600px;
    height: 411px;

    background-image: url("notepad.png");
    background-repeat: no-repeat;
    background-size: 600px 411px;

    z-index: 1;
}

#notepad-content {
    position: absolute;

    left: 6px;
    top: 44px;

    width: 587px;
    height: 360px;

    overflow: auto;

    background: transparent;

    color: black;

    font-family: "Courier New", monospace;
    font-size: 14px;
}