@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&family=Playfair+Display&family=Roboto&family=Ubuntu:wght@500;700&display=swap');

body{
	color: #2d298b;
	background: #f6eaff;
	font-family: 'IBM Plex Sans', sans-serif;
}

header{
	text-align: right;
}

#title{
	text-align: center;
	margin:10px;
	font-family: 'Ubuntu', serif;
}

header span{
	font-size: 2em;
}

#content h3{
	padding-left: 30px;
	font-family: 'Playfair Display' , sans-serif;
}

#box{
	display: block;
	position: absolute;
	z-index: 10;
	width: 101%;
	height: 101%;
	top: 0px;
	left: 0px;
	margin:-10px -5px -10px -5px;
	background: #bbbbbbaa;
	backdrop-filter: blur(3px);
}

#popup{
	font-family: 'Roboto', serif;
	display: block;
	position: relative;
	margin: 100px;
	background: #f9f9f9;
	z-index: 11;
	min-height: 300px;
	border-radius: 15px;
	padding: 10px 15px 10px 15px;
	box-shadow: -3px 5px 5px #8080805a;
}

@media (orientation:landscape){
	.block{
		display:grid;
		grid-template-columns: repeat(3,1fr);
	}
}

.room{
	border: 1px solid #a86db9;
	border-radius: 10px;
	margin: 10px;
	background:#dadada;
	max-height: 140px;
	padding: 5px 15px 5px 15px;
	box-shadow: -1px 2px 4px 0.25px #8080807d;
}
.room:hover{
	border-width: 2.5px;
	padding: 2.5px 12.5px 4.5px 14.5px;
	background:#ccccccd6;
	color: #211e68;
	box-shadow: -1px 1px 4px 0.25px #8080805c;
}

.filled_room{
	border-radius: 10px;
	margin: 10px;
	background: #dc8272;
	color: #000;	
	max-height: 140px;
	padding:5px 15px 5px 15px;
	box-shadow: -2px 2px 10px 0.25px #8080807d;
	border: 1px solid red;
}
.filled_room:hover{
	background: #d76f5d;
	border-width: 2.5px;
	box-shadow: -2px 2px 7px 0.25px #8080805c;
	padding: 2.5px 12.5px 4.5px 14.5px;
}

footer{
	background: #111;
	margin: 10px -10px -10px -10px;
	padding: 25px;
	text-align: center;
}
footer span{
	margin-left: 3%;
	margin-right: 3%;
	color: #555;
}
footer a{
	font-style: normal;
	text-decoration: none;
	color: #555;
}
footer a:hover{
	text-decoration: underline;
}

@media (orientation:portrait){
	.room{
		margin: 15px;
		padding: 5px 7px 5px 7px;
	}
	.room:hover{
		margin: 15px;
		padding: 3.5px 8.5px 6.5px 5.5px;
	}

	.filled_room{
		margin: 15px;
		padding: 5px 7px 5px 7px;
	}
	.filled_room:hover{
		margin: 15px;
		padding: 3.5px 8.5px 6.5px 5.5px;
	}

	#popup{
		margin: 40px;
	}
}
