/* Global */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.1rem;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;

    }

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    height: 100%;
}


#video-bg {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

#desktop {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: auto;
    text-align:left;
    padding: 0;
}

#content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    text-align: left;
    color: #111111;
    padding: 1rem;
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    #content {
        padding: 2rem;
    }
}


h1 {
    font-size: 48px;
}

.icon {
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.icon img {
    width: 40px;
    height: auto;    
}

@media only screen and (min-width: 768px) {
    .icon img {
        width: 120px;
    }
}

.icon p {
    margin: 0;
    font-size: 1.25rem;
    color: #ffffff;
}

#taskbar {
    width:100%;
    height: 3rem;
    position: fixed;  
    background-color: #ccc;
    padding: 0.25rem;
    display: flex;
}

#taskbar-logo {
    width: 10%;
}

#taskbar-section {
    width: 90%;
}

.taskbar-section-tab {
    max-width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    background-color: #ccc;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    cursor: pointer;
}

.taskbar-section-tab.active {
    background-color: #ddd;
}

.window {    
    display: none;
    min-height: 120px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;

    background-color: #fff;
    box-shadow: -8px 8px 10px rgba(0,0,0,0.25);
    z-index: 2;
}

@media only screen and (min-width: 768px) {
    .window {
        width: initial;

        top: 24%;
        left: 20%;
        right: 1%;
        max-width: 768px;

    }
}

.window-header {
    width: 100%;
    height: 40px;
    padding: 0.5rem;
    background-color: #eee;
    display: flex;
    justify-content: right;
}

.window-header img {
    cursor: pointer;
}

.window-content {
    width: 100%;
    height: 100%;
    max-height: 600px;
    padding: 1rem;
    overflow-x: hidden;
    overflow-y: scroll;
}

.window h1, .window h2, .window h3, .window p {
    margin: 0.5rem 0;
}

