* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

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

.jumbotron h1 {
	font-size: 7rem;
}
.jumbotron p {
	font-size: 2.5rem;
}
.jumbotron h1,
p {
	color: white;
}

.content {
	margin-top: 5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.card-container {
	flex-direction: row;
	display: flex;
	justify-content: center;
}

.card {
	margin: 20px;
	padding: 16px;
	border: 3px solid black;
	border-radius: 16px;
	box-shadow: 5px 5px 10px gray;
	/* width: 25rem; */
}

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

.card p {
	color: black;
}

.card img {
	width: 300px;
	height: auto;
	border-radius: 15px;
}

.card h3 {
	font-size: 2.5rem;
}
.card h4 {
	font-size: 1.5rem;
}
.card p {
	font-size: 1rem;
}
.button {
	/* margin: 20px 0; */
	background-color: royalblue;
	padding: 10px;
	border-radius: 10px;
	border: none;
	text-align: center;
}
.button a {
	text-decoration: none;
	color: white;
}
.button:hover {
	cursor: pointer;
	background-color: rgb(41, 159, 120);
}

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

.coming-soon {
	text-transform: uppercase;
	font-size: 8rem;
	color: black;
}
