/* setting */
html {
	font-family: sans-serif;
}
body {
	user-select: none;
	font-family:'Courier New', Courier, monospace;
	color: #1e1e1e;
	cursor: crosshair;
}

/* NAV */
a {
	text-decoration: none;
	color: #1e1e1e;
}
button {
	font-family:'Courier New', Courier, monospace;
	background-color: #dedede83;
	border-radius: 0;
	border: 0.1px solid #1e1e1e82;
}
button:hover {
	background-color: #fe6d29;
	border: none;
	color: #f2f2f2;
	font-weight: 800;
	cursor: pointer;
}
nav {
	width: 90%;
	position: fixed;
	z-index: 999;
	top: 0;
	padding: 10px;
}
#title {
	background-color: #dedede83;
	padding: 0 8px;
}
#title:hover {
	background-color: #fe6d29;
	color: #f2f2f2;
	font-weight: 800;
}
#home {
	position: absolute;
	right: 0%;
	padding: 5px 20px;
	color: #fe6d29;
	border: 1px solid #fe6d29;
	font-weight: 100;
}
#home:hover {
	background-color: #fe6d29;
	color: #f2f2f2;
	font-weight: 800;
	border: none;
}

/* content */
.space {
	width: 100%;
	padding: 0;
	margin: 7% 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}
.Spot {
	width: 400px;
	align-content: center;
}
.Spot img {
	width: 100%;
}
img {
	image-rendering: pixelated;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(243, 204, 132, 0.4);
}
.modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 50%;
	border-radius: 10px;
	cursor: crosshair;
}
.modal-nav {
	background-color: #fefefe;
	margin: 10% auto;
	width: 10%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	border: 1px solid #888;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: crosshair;
} 
.modal-nav::after {
	content: "";
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 15px solid #fe6d29;
	top: 0px;
}
.modal-nav:hover{
	zoom:2;
}