* {
	margin: 0;
	padding: 0;
}

h1 {
	color: yellow;
	font-size: 40px;
	text-align: center;
}

header {
	background-color: #2ec1ac;
	color: white;
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 50px;
	display: flex;
	z-index: 2;
}

.header-title {
	text-align: left;
	color: white;
	margin: 14px;
	font-size: 20px;
}

nav {
	position: absolute;
	right: 0;
	display: flex;
}
a {
	text-decoration: none;
	color: white;
	padding: 15px;
}
a:hover {
	color: black;
}

.jumbotron {
	background-color: #2ec1ac;
	padding: 50px 100px;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

.jumbotron img {
	width: 300px;
	height: 300px;
}

.jumbotron h3,
p {
	color: white;
}

.main-container {
	flex-direction: row;
	display: flex;
	justify-content: center;
}

.package-container {
	margin: 20px;
	padding: 16px;
	border: 3px solid black;
	border-radius: 16px;
	box-shadow: 5px 5px 10px gray;
}

.package-container:hover {
	background-color: rgba(0, 0, 0, 0.157);
}

.package-container p {
	color: black;
}

.package-container img {
	width: 200px;
	/* height: 200px; */
}

button {
	background-color: #5fc8f5;
	padding: 10px;
	color: white;
	border-radius: 10px;
	border: none;
}
button:hover {
	cursor: pointer;
	background-color: rgb(41, 159, 120);
}

.left {
	margin: 0 0 0 60%;
	padding: 12px;
}
.top-center {
	margin: 10% 30%;
	background-color: palevioletred;
}

table,
th,
td,
tr,
td {
	border: 1px solid black;
	border-collapse: collapse;
	padding: 10px;
}

th {
	background-color: darkgreen;
	color: white;
}

.table {
	display: flex;
	justify-content: center;
	text-align: center;
}

.table img {
	width: 200px;
}

.tab-container {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.tab {
	width: 300px;
	height: 400px;
	padding: 5px;
	margin: 10px;
	background-color: turquoise;
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0.85;
	color: palevioletred;
}
.tab-header {
	text-align: center;
}
.tab-header h2 {
	font-size: 25pt;
}
.tab-header h3 {
	margin-top: 10px;
	font-size: 20pt;
}
hr {
	width: 80%;
	height: 7px;
	background-color: palevioletred;
	margin-top: 20px;
}
ul {
	margin-top: 20px;
}
ul li {
	font-size: 18pt;
}
footer {
	color: white;
	text-align: center;
	background-color: #2ec1ac;
	padding: 10px;
	margin-top: 50px;
}

footer a {
	margin: 0;
	padding: 0;
	float: none;
	color: teal;
}

.formcontainer {
	margin: 45px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* text-align: center; */
}

.formcontainer h1 {
	text-align: center;
}
.formcontainer img {
	width: 300px;
}

form {
	display: flex;
	flex-direction: column;
}

select {
	width: 100%;
	display: inline-block;
	margin-bottom: 10px;
	padding: 5px;
	border-radius: 3px;
}

.about-container {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.about-container img {
	width: 300px;
	margin-bottom: 10px;
}

.about-container h1,
.about-container p {
	color: #2ec1ac;
}
