
/* your CSS styles can go here */
html, body {
    height: 100%;
    width: 100%;
	margin: 0px;    
}
body {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  text-align: center;
  background-color: #3c5077;
}
.button {
	
	border: hidden; 
	outline: none;
	color: black;
	text-align: center;
	cursor: pointer;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 250;
	width: 9vmin;
	height: 9vmin;
}
.beach {
	background-color: #ffffe6;
}
.mountain {
	background-color: #A8A59C;
}
.forest {
	background-color: #339933;
}
.clicked {
	border-style: solid; 
	/*border-width: medium; */
	border-color: red;
}
/*.center {
	margin: auto;
	width: 80%;
	padding: 5px;
}*/
.wrapper {
	
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	/*width: 60%;*/
	/*height: calc(60vmin - 5px);
	width: calc(60vmax - 5px);*/
	grid-gap: 5px;
	padding: 10px;
}

.heading {
	grid-column: 1/9;
	font-size: 20px;
	
}
.selector {
	font-size: 20px;
	cursor: pointer;
	text-align: center;
	padding: 8px 8px;
	/*padding-bottom: 8px;*/
	/*padding-top: 8px;*/
	border-radius: 18px;
	backround: #fff;
	border: 0;
}

.hidden {
	display: none;
}
.visible {
	display: inline-grid;
}
.popup {
	width: 330px;
	background: #F0EAD6;
	border-radius: 18px;
	border: thick solid;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	padding: 0 10px 20px;
	color: #333;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	visibility: hidden;
}

.popup h2{
	font-size: 38px;
	font-weight: 500;
	margin: 10px 0 10px;
}

.popup button{
	width: 100%;
	margin-top: 20px;
	padding: 10px 0;
	background:#6fd649;
}

.open-popup {
	visibility: visible;
}
