@import url("https://unpkg.com/7.css");

.game-wrap {
	position: relative;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
}
#game-container {
	position: absolute;
	width: 400px;
	height: 400px;
	background-image: url('https://files.catbox.moe/ymwi99.gif');
	background-repeat: repeat;
	background-attachment: fixed;
	cursor: auto;
}

.door {
	position: absolute;
	width: 32px;
	height: 32px;
	background-size: cover;
	z-index: 1;
	mouse: pointer;
}

#door1 { top: 97.4px; left: 134px; background-image: url('https://files.catbox.moe/45lcdi.png');}
   
#door2 { top: 184px; left: 84px; background-image: url('https://files.catbox.moe/iq2ghv.png');}
   
#door3 { top: 270.6px; left: 134px; background-image: url('https://files.catbox.moe/hc6iip.png');}
   
#door4 { top: 270.6px; left: 235px; background-image: url('https://files.catbox.moe/kbcj52.png');}
   
#door5 { top: 184px; left: 284px; background-image: url('https://files.catbox.moe/mxgh3z.png');}
   
#door6 { top: 97.4px; left: 235px; background-image: url('https://files.catbox.moe/0e0f0o.png');}	

#player {
	position: absolute;
	top: 200px;
	left: 200px;
	width: 32px;
	height: 32px;
	image-rending: pixelated;
	z-index: 10;
}

#popup {
	position: relative;
	top: 50%;
	left: 50%;
	width: 70%;
	transform: translate(-50%, -50%);
	padding: 20px;
	display: none;
	border: 2px solid black;
	text-align: center;
	background-color: white;
	color: black;
	z-index: 20;
}

#popup button {
	margin: 10px;
	padding: 5px 20px;
	cursor: pointer;
	z-index: 1000;
}