body {
    background-color: rgb(161, 137, 0);
}
.h1 {
    opacity: 50%;
}


@keyframes WindowOpen {
    100% {
        opacity: 100%;
        scale: initial;
    }
    0% {
        scale: .95;
        
        opacity: 0%;
    }
}

.window {
    width: 600px;
    background-color: white;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.158);
    position: absolute;
    min-height: 500px;
    animation-name: WindowOpen;
    animation-duration: .6s;
    animation-timing-function:cubic-bezier(0.19, 1, 0.22, 1);
    animation-direction:normal;
    animation-fill-mode: forwards;
    overflow: hidden;
}

.windowContent {
    padding-left: 10px; 
    width: calc(100% - 10px); 
    height: calc(100% - 25px);
    
}

div.windowTitlebar {
    width: 100%;
    height: 30px;
    background-color: rgb(243, 243, 243);
    
}


body {
	width: 100%;
	height: 100%;
	margin: 0px 0px 0px 0px;
	overflow: hidden;
	background-image: url('images/desktop_wip.png');
	background-size: cover;
	image-rendering: pixelated;
	background-repeat: no-repeat;
}

html {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

img {
    image-rendering: initial;
}

p.windowTitlebar {
    
    left: 5px;
    position: relative;
    display: inline;

    line-height: 29px;
    text-align: center;
    font-size: 12.25px;
}

@keyframes ButtonHover {
    from {
        background-color: rgb(243, 243, 243);
    }
    to {
        background-color: rgb(233, 233, 233);
    }
}
@keyframes fadeOut {
    to {
        background-color: rgb(243, 243, 243);
    }
    from {
        background-color: rgb(233, 233, 233);
    }
}

@keyframes ButtonHoverRed {
    from {
        background-color: rgb(243, 243, 243);
        color: black;
    }
    to {
        background-color: rgb(196, 43, 28);
        color: white;
    }
}
@keyframes fadeOutRed {
    to {
        background-color: rgb(243, 243, 243);
        color: black;
    }
    from {
        background-color: rgb(196, 43, 28);
        color: white;
    }
}


@keyframes WindowClose {
    0% {
        opacity: 100%;
        scale: initial;
    }
    60% {
        scale: .9;
    }
    100% {
        scale: .95;
        
        opacity: 0%;
    }
}


div.Windowbutton {
    width: 50;
    height: 30;
    background-color: rgb(243, 243, 243);
    position: relative;
    
    left: 100%;
    top: -29px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    animation-duration: .2s;
    animation-timing-function: ease-out;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
img.Windowbutton {
    width: 10;
    filter: brightness(0);
    user-select: none;
}


button {
    width: 100;
    height: 30px;
    background-color: rgb(216, 216, 216);
    border-color: rgb(0, 120, 215);
    border-style: solid;
}


@keyframes TaskBarHover {
    from {background-color: rgba(128, 128, 128, 0);}
    to {background-color: rgba(128, 128, 128, 0.308);}
}
@keyframes FileButtonHover {
    from {background-color: rgba(128, 128, 128, 0);}
    to {background-color: rgba(207, 222, 255, 0.308);}
}

.TASKBAR {
    width: 100%;
    height: 40px;
    background-color: rgb(32, 32, 32);
    position: absolute;
    bottom: 0px;
    left: 0px;
}


.TASKBARITEM {
    width: 50px; 
    height: 100%;
    background-color: rgba(128, 128, 128, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    animation-timing-function: ease-out;
    animation-direction:reverse;
    animation-fill-mode:forwards;
    animation-duration: .3s;
    float:left
}

.TASKBARITEM:hover {
    animation-name: TaskBarHover;
    animation-direction:normal;
}


div.desktopIcon {
    width: 70px;
    height: 74px;
    animation-timing-function: ease-out;
    animation-direction:reverse;
    animation-fill-mode:forwards;
    animation-duration: .3s;
    padding-top: 2px;
    margin-left: 6px;
    text-wrap: wrap;
}

div.desktopIconStack {
    width: 70px;
    height: 74px;
    animation-timing-function: ease-out;
    animation-direction:reverse;
    animation-fill-mode:forwards;
    animation-duration: .3s;
    padding-top: 2px;
    display: inline-block;
}

div.desktopIcon:hover {
    animation-name: FileButtonHover;
    animation-direction:normal;
}
div.desktopIconStack:hover {
    animation-name: FileButtonHover;
    animation-direction:normal;
}

img.desktopIcon {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: 35px;
    margin-top: 5px;
    margin-left: 15px;
    pointer-events: none;
    user-select: none;
}

p.desktopIcon {
    margin-top: 3px;
    font-size: 13px;
    text-align: center;
    margin-left: -4px;
    text-shadow: 0px 0px 5px black;
    color: white;
    pointer-events: none;  
    user-select: none; 
}


.hidden {
    visibility: hidden;
    pointer-events: none;
    position: absolute;
}




::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}



.emojijs {
    top: 10px;
    position: relative;
    scale: .7;
}