@charset "utf-8";
/* CSS Document */
body{
	box-sizing: border-box;
	align-content: center;
	background: dodgerblue;
	width: 100%;
}
#logo{
	position: fixed;
	margin-top: -5%;
	margin-left: 2%;
	width: 13vw;
	z-index: 1;
	opacity: 0.9;}
header{
	max-height: 10%;
	text-align: center;
}

header nav {
		margin: auto;
	z-index: 1;
	margin-top: 2vh;
}
header nav ul{
	width: 99%;
	padding: 1%;
	margin: auto;
	text-align: center;
	text-decoration: none;
	list-style-type: none;
	display: inline-block;
	color: white;
}
header nav ul li{
	text-decoration-line: none;
	font-size: 2vw;
	font-weight:bolder;
	opacity: 0.9;
	margin: auto;
	width: 15vw;
	display: inline-block;
	color: white;
}
header nav ul li a{
	text-decoration: none;
	color: white;
}
header nav ul li a:hover{
	color: black;
	opacity: 1.0;
}

#title{
	display: flex;
	justify-content: center;
	margin-top: 1%;
	margin-bottom: 5%;
	margin-left: 30%;
	margin-right: auto;
	width: 40%;
	font-size: x-large;
	font-weight: bold;
	border: 4px solid white;
	text-align: center;
	border-radius: 10px;
	background-color: black;
	color: white;
	opacity: 0.9;
	z-index: 1;
}
.h{
	display: flex;
	justify-content: center;
	min-width: 10%;
	max-width: 69%;
	margin-top: 1%;
	margin-left: auto;
	margin-right: auto;
	border: 6px solid black;
	border-radius: 3%;
	z-index: -1;
}
.v{
	    max-height: 80vh;
		min-height: 10vh;
		height: auto;
		width: auto;
		margin: 1%;
		margin-left: 25vw;
		margin-right: 25vw;
		border: 5px solid black;
		border-radius: 15px;
}
h1{
	width: 60%;
	margin-left:20%;
	text-align: center;
}
#buy{
	display: flex;
	justify-content: center;
	margin-top: -2%;
}
#calendar{
	width: 99%;
	height: auto;
	margin-top: 2%;
	display: grid;
	grid-template-columns: repeat(3, 1fr)
}
.month{
	width: 83%;
	text-align: center;
	font-size: 2vw;
	font-weight: bold;
}
.month img{
	padding: .5%;
	width: 99%;
	border: 6px solid black;
	border-radius: 3px;
	background-color: aliceblue;
}
footer{
	position: fixed;
	bottom: 2px;
	width: 98vw;
	height: 4vw;
	padding: .4vw;
}
footer img{
	height: 90%;
	opacity: .7;
	margin: .2vw;
	
}
footer img:hover{
	opacity: 1.0;
}
@media screen and (max-width: 850px){
	header{
	}
	header nav ul li{
		width: 29vw;
	}
	header nav ul li a{
		font-size: 4vw;
		font-weight: bold;
		opacity: .8;
	}
	.h{
		max-width: 90%;
		height: auto;
		max-height: auto;
	}
	figcaption{
		width: 60vw;
		margin-top: 2%;
		margin-left: auto;
		margin-right: auto;
	}
	#calendar{
		display: block;
	}
	.month{
		float: left;
		width: 60%;
		margin-left: 20%;
	}
	#location{
		display: none;
	}
	footer{
		height: 6vh;
		width: 96vw;
	}
	footer img{
		height: 4vh;
	}
	#buy{
	
	}
}