* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background-color: yellow;
	height: 100%;
	padding: 30px;
	font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, .hotel p {
	text-align: center;
}

/*Navigation Bar*/
.topnav {
	position: fixed;
	overflow: hidden;
	background-color: #333;
	top: 0;
	left: 0;
	width: 100%;
}

.topnav a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}

.topnav a:hover {
	background-color: #ddd;
	color: black;
}

.topnav .icon {
	display: none;
}

/*Welcome*/
.welcome {
	padding-top: 80px;
}

.welcome h1 {
	font-weight: 900;
}

.welcome h2 {
	padding-top: 14px;
	margin-bottom: 0;
	padding-bottom: 0;
}

.welcome h3 {
	margin-top: 0;
}

.welcome p {
	padding: 10px 0;
}

/*Theme*/
.theme {
	font-size: 18px;
	background-color: white;
	color: black;
	padding: 5px 7px;
	transition: all ms 1000s ease-in-out;
	text-decoration: underline;
	border: yellow;
}

.theme:hover {
	color: white;
	background-color: black;
}

.dark {
	background-color: navy;
	color: yellow;
}

.dark a {
	color: pink;
}

.dark .image-container {
	background: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/136/107/original/night.jpg?1722234730");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 20px;
	margin: 20px auto;
	height: 1050px;
}

.dark .hotel-column img {
	width: 250px;
	height: 175px;
	box-shadow: 0 4px 8px 0 rgba(255, 255, 0, 0.9);
}

.image-container {
	margin: 20px auto;
	background: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/136/106/original/day.jpg?1722234705");
	background-repeat: no-repeat;
	background-size: cover;
	height: 950px;
	padding: 20px;
}

/*Attraction*/
.attractions h2 {
	padding: 70px 0;
}

.attractions h3 {
	text-align: left;
}

/*Adventure*/
.explore {
	padding: 70px 0;
}
.venture1 {
	float: left;
	width: 50%;
}

.venture1-text {
	float: left;
	width: 50%;
	text-align: justify;
	padding-left: 15px;
}

.venture2 {
	float: right;
	width: 50%;
}

.venture2-text {
	float: right;
	width: 50%;
	text-align: justify;
	padding-right: 15px;
	padding-top: 10px;
}

.clear {
	clear: both;
	display: block;
}

/*Food*/
.dining h2 {
	padding: 70px 0;
}

.strat {
	float: left;
	width: 25%;
	padding-right: 10px;
}

.mgmgrand {
	float: right;
	width: 25%;
	padding-left: 10px;
}

/*Hotel*/
.hotel h1 {
	padding-top: 30px;
}

.hotel-row {
	display: flex;
	flex-wrap: wrap;
}

.hotel-row:after {
	content: "";
	display: table;
	clear: both;
}

#hotel-column {
	float: left;
	width: 20%;
	text-align: center;
	font-size: 25px;
	cursor: pointer;
	color: white;
}

#hotel-column img {
	width: 175px;
	height: 250px;
	box-shadow: 0 4px 8px 0 rgba(255, 0, 0, 0.9);
}

.containerTab {
	padding: 20px;
	color: white;
	display: none;
}

.closebtn {
	float: right;
	color: white;
	font-size: 35px;
	cursor: pointer;
}

.hotel-button {
	border: none;
	outline: 0;
	display: inline-block;
	padding: 8px;
	background-color: #000;
	text-align: center;
	cursor: pointer;
	width: 0 auto;
	margin-left: 50%;
}

.hotel-button a {
	color: white;
	text-decoration: none;
}

.hotel-button:hover {
	background-color: #ddd;
}

.hotel-button:hover a {
	color: black;
	text-decoration: none;
}

/*Footer*/
footer p {
	padding-top: 15px;
	font-size: 13px;
	text-align: center;
}

footer a {
	color: navy;
}

/*Responsive*/

/*Navigation Bar*/
@media screen and (max-width: 600px) {
	.topnav a:not(:first-child) {
		display: none;
	}
	.topnav a.icon {
		float: right;
		display: block;
	}
}

@media screen and (max-width: 600px) {
	.topnav.responsive {
		position: fixed;
	}
	.topnav.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
}

/*Welcome Image*/
@media screen and (max-width: 420px) {
	.image-container {
		background-size: contain;
		height: 510px;
	}
	.dark .image-container {
		background-size: contain;
		height: 250px;
		width: 100%;
	}
}

@media screen and (max-width: 865px) {
	.image-container {
		width: 100%;
		height: 510px;
	}
	.dark .image-container {
		width: 100%;
		height: 540px;
	}
}

/*Adventure Image Size*/
@media screen and (max-width: 865px) {
	.venture1-text {
		width: 100%;
		text-align: left;
	}
	.venture2-text {
		width: 100%;
		text-align: left;
	}
}

/*Hotel Size*/
@media screen and (max-width: 600px) {
	#hotel-column {
		width: 100%;
	}
	.hotel-button {
		text-align: center;
		margin-left: 35%;
	}
}