body {
  display: block;
  width: 100%;
  height: 100vh;
  font-family: Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif; 
  font-size: 9pt;
  color: #fff;
  background-image: url(https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/c003b7a7-7b31-49f2-952a-37bf4e70ad16/dg5tut4-73e1924b-567a-422d-8710-9d8ef6971581.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcL2MwMDNiN2E3LTdiMzEtNDlmMi05NTJhLTM3YmY0ZTcwYWQxNlwvZGc1dHV0NC03M2UxOTI0Yi01NjdhLTQyMmQtODcxMC05ZDhlZjY5NzE1ODEucG5nIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.JtlGU9zM9Sp6QrIBLYL1fO_bnkAlBPLlh0lwy4DI3Sk);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}


.portal {
    bottom: 579px; 
    left: 1222px;
    position: fixed;
    width:auto; 
    height:auto;
    margin: 0px;
  }

  .stairs {
    bottom: 263px; 
    left: 1091px;
    position: fixed;
    width:auto; 
    height:auto;
    margin: 0px;
  }

#cage {
     bottom: 30px; 
     left: 1263px; 
    position: inherit 
}


/* link color */

a:link {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: hotpink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: papayawhip;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: paleturquoise;
  background-color: transparent;
  text-decoration: underline;
}
/* link color end */

/* STROKE */
.text-outline { 
    -webkit-text-stroke: 0.1px rgb(255, 152, 246);
}

.text-outline_2 { 
    -webkit-text-stroke: 0.1px rgb(0, 0, 0);
}

.text-outline_3 { 
    -webkit-text-stroke: 0.1px rgb(49, 219, 245);
}
/* STROKE END */


/* snowflakes*/

@-webkit-keyframes snowflakes-fall {
		0% {
			top: -10%
		}
		100% {
			top: 100%
		}
	}
	
	@-webkit-keyframes snowflakes-shake {
		0%,
		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}
		50% {
			-webkit-transform: translateX(80px);
			transform: translateX(80px)
		}
	}
	
	@keyframes snowflakes-fall {
		0% {
			top: -10%
		}
		100% {
			top: 100%
		}
	}
	
	@keyframes snowflakes-shake {
		0%,
		100% {
			transform: translateX(0)
		}
		50% {
			transform: translateX(80px)
		}
	}
	
	.snowflake {
		position: fixed;
		top: -10%;
		z-index: 9999;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		-webkit-animation-name: snowflakes-fall, snowflakes-shake;
		-webkit-animation-duration: 10s, 3s;
		-webkit-animation-timing-function: linear, ease-in-out;
		-webkit-animation-iteration-count: infinite, infinite;
		-webkit-animation-play-state: running, running;
		animation-name: snowflakes-fall, snowflakes-shake;
		animation-duration: 10s, 3s;
		animation-timing-function: linear, ease-in-out;
		animation-iteration-count: infinite, infinite;
		animation-play-state: running, running
	}
	
	.snowflake:nth-of-type(0) {
		left: 1%;
		-webkit-animation-delay: 0s, 0s;
		animation-delay: 0s, 0s
	}
	
	.snowflake:nth-of-type(1) {
		left: 10%;
		-webkit-animation-delay: 1s, 1s;
		animation-delay: 1s, 1s
	}
	
	.snowflake:nth-of-type(2) {
		left: 20%;
		-webkit-animation-delay: 6s, .5s;
		animation-delay: 6s, .5s
	}
	
	.snowflake:nth-of-type(3) {
		left: 30%;
		-webkit-animation-delay: 4s, 2s;
		animation-delay: 4s, 2s
	}
	
	.snowflake:nth-of-type(4) {
		left: 40%;
		-webkit-animation-delay: 2s, 2s;
		animation-delay: 2s, 2s
	}
	
	.snowflake:nth-of-type(5) {
		left: 50%;
		-webkit-animation-delay: 8s, 3s;
		animation-delay: 8s, 3s
	}
	
	.snowflake:nth-of-type(6) {
		left: 60%;
		-webkit-animation-delay: 6s, 2s;
		animation-delay: 6s, 2s
	}
	
	.snowflake:nth-of-type(7) {
		left: 70%;
		-webkit-animation-delay: 2.5s, 1s;
		animation-delay: 2.5s, 1s
	}
	
	.snowflake:nth-of-type(8) {
		left: 80%;
		-webkit-animation-delay: 1s, 0s;
		animation-delay: 1s, 0s
	}
	
	.snowflake:nth-of-type(9) {
		left: 90%;
		-webkit-animation-delay: 3s, 1.5s;
		animation-delay: 3s, 1.5s
	}
	
	.snowflake:nth-of-type(10) {
		left: 25%;
		-webkit-animation-delay: 2s, 0s;
		animation-delay: 2s, 0s
	}
	
	.snowflake:nth-of-type(11) {
		left: 65%;
		-webkit-animation-delay: 4s, 2.5s;
		animation-delay: 4s, 2.5s
	}
/* snowflakes end */

#desktop {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 40px;
  left: 5px;
  z-index: 1;
}


#black {
  height: 100vh;
  width: 100vw;
  background-color: none;
}

#dvd {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 50px;
  width: 100px;
  mask: url("https://upload.wikimedia.org/wikipedia/commons/9/9b/DVD_logo.svg");
  -webkit-mask: url("https://upload.wikimedia.org/wikipedia/commons/9/9b/DVD_logo.svg");
  background-repeat: no-repeat;
  background-size: 75px;
  background-position: center;
}


/* window boxes backgrounds */

.bgwin4 {
  background-image: url(https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/c003b7a7-7b31-49f2-952a-37bf4e70ad16/dg5mag1-ba3e500a-4046-47a7-afe1-97525b78b68e.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcL2MwMDNiN2E3LTdiMzEtNDlmMi05NTJhLTM3YmY0ZTcwYWQxNlwvZGc1bWFnMS1iYTNlNTAwYS00MDQ2LTQ3YTctYWZlMS05NzUyNWI3OGI2OGUucG5nIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.HEwH-fnCaSNN75xYftdj1ZG8gfylYzhtcGjZZShx_cY); 
  background-attachment: fixed;
  background-repeat: repeat;
  background-position: bottom;
  background-size: auto;
}
/* window boxes background end */

.bgtransparent {
    background: none;
}

#desktop > .icon {
  position: absolute;
  display: block;
  width: 70px;
  height: 70px;
  background-size: 48px;
  background-repeat: no-repeat;
  background-position: top center;
  border: solid 1px transparent;
  border-radius: 2px;
  z-index: 2;
}
#desktop > .icon:hover, #desktop > .icon.dragging, #desktop > .icon.drop-hover, #desktop > .icon.clicked {
  background-color: rgba(255,255,255,.3);
  border-color:rgba(255,255,255,.3);
}
#desktop > .icon:after {
  display: block;
  position: absolute;
  top: 50px;
  width: 100%;
  text-align: center;
  content: attr(data-label);
  text-shadow: 0 2px 2px #000;
}
#desktop > .icon.ui-draggable-dragging:hover {
  background-color: transparent;
  border: none;
}
#task-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 40px;
  border-top: solid 1px rgba(255, 255, 255, .5);
  -webkit-box-shadow: 0 -1px 0 0 #00506b;
  box-shadow: 0 -1px 0 0 #00506b;
  z-index: 1;
}
#task-bar > #blur-overlay {
  position: absolute;
  top: 0;
  right: -150px;
  bottom: -150px;
  left: -150px;
  background-image: url(https://imyourman.dk/codepen/windows/background.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  z-index: 2;
}
#task-bar > #blur-overlay:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.25) 15%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0.6) 85%, rgba(0, 0, 0, 0.6) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.25) 15%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0.6) 85%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 10%, rgba(0, 0, 0, 0.25) 15%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0.6) 85%, rgba(0, 0, 0, 0.6) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#66000000', endColorstr='#66000000', GradientType=1);
  content: '';
  z-index: 3;
}
#menu-button {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 10px;
  display: block;
  width: 32px;
  height: 32px;
  z-index: 3;
  background-image: url(../img/start_button.png);
  background-size: 100%;
}

#menu-button:hover {
  background-image: url(../img/start_button_hover.png);
  background-size: 100%;
}

#pined-items {
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  display: block;
}

#pined-items > .pined-icon {
  position: relative;
  display: block;
  width: 60px;
  height: 40px;
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center;
  border: solid 1px transparent;
  border-radius: 2px;
  z-index: 3;
}

#datetime {
  position: absolute;
  top: 5px;
  right: 30px;
  z-index: 3;
  text-align: center;
}

#datetime > span {
  display: block;
  margin: 0;
}

#show-desktop {
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 0;
  width: 15px;
  background: -moz-linear-gradient(-45deg,  rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 30%, rgba(0,0,0,0.2) 31%, rgba(0,0,0,0.2) 100%);
  background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,0.2) 0%,rgba(255,255,255,0) 30%,rgba(0,0,0,0.2) 31%,rgba(0,0,0,0.2) 100%);
  background: linear-gradient(135deg,  rgba(255,255,255,0.2) 0%,rgba(255,255,255,0) 30%,rgba(0,0,0,0.2) 31%,rgba(0,0,0,0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33ffffff', endColorstr='#33000000',GradientType=1 );
  border: solid 1px rgba(255,255,255,.2);
  z-index: 3;
  -webkit-box-shadow: -1px 0 0 0 #000;
  box-shadow: -1px 0 0 0 #000;
}

#show-desktop:hover {
  background: -moz-linear-gradient(-45deg,  rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.2) 30%, rgba(255,255,255,0.2) 31%, rgba(255,255,255,0.2) 100%);
  background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,0.4) 0%,rgba(255,255,255,0.2) 30%,rgba(255,255,255,255.2) 31%,rgba(255,255,255,0.2) 100%);
  background: linear-gradient(135deg,  rgba(255,255,255,0.4) 0%,rgba(255,255,255,0.2) 30%,rgba(255,255,255,0.2) 31%,rgba(255,255,255,0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33ffffff', endColorstr='#33000000',GradientType=1 );
  border: solid 1px rgba(255,255,255,.2);
}


/* clickable divs */
#my-div {
    background-color: #f00;
    width: 200px;
    height: 200px;
}
a.fill-div {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

/* Program Placements */
#computer {
  top: 0;
  left: 0;
}

#test-file {
  top: 100px;
  left: 0;
}

#trash {
  top: 200px;
  left: 0;
}

/* Icons */
.computer { background-image: url(../img/computer.png); }
.trash { background-image: url(../img/bin.png); }
.test-file { background-image: url(../img/notepad.png) }

/* Pined Icons */
#pined-items > .iexplore { background-image: url(../img/iexplorer.png);}

/* Bouncing area of the ball */
#bouncing_area {
  background-color: #ffffff00;
  position: absolute;
}

.keiichi{bottom: -70px; 
    left: -20px;
    position: inherit;
    width="273" 
    height="514"
    
}

img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.paragraphe {
  text-align: center;
}

.clickable {
  cursor: pointer;
}

#pop_up {
  opacity: 0;
}