:root {
	--main-white: #eeeeee;
	--main-teal: #00adb5;
	--main-black: #222831;
	--main-gray: #393e46;
}
html {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	text-align: center;
	color: #222831;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	color: var(--main-gray);
	background-color: var(--main-white);
}
.empty {
	height: 100px;
}

#header {
	text-align: right;
	background-color: var(--main-teal);
	padding: 15px;
	position: fixed;
	width: 97%;
}
#header-img {
	float: left;
	width: 60px;
}
ul {
	list-style-type: none;
}
li {
	display: inline-block;
}
a {
	text-decoration: none;
	color: var(--main-black);
	padding: 12px;
	font-size: 17px;
}
a:active,
li:link {
	color: var(--main-black);
}
a:hover {
	background-color: var(--main-white);
	border-radius: 10px;
}
h1 {
	color: var(--main-black);
}
h2 {
	font-style: italic;
	font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
		sans-serif;
}
.box {
	margin-bottom: 10px;
	display: flex;
}
.icon_left {
	float: left;
	width: 80px;
	height: 80px;
	margin: 15px;
}
.small_box {
	font-size: large;
	text-align: left;
}
.img_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-right: 10px;
}
h3 {
	font-size: 25px;
}

.bigger_h3 {
	font-size: 35px;
}
.pricing_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.pricing_box {
	width: 24%;
	height: 300px;
	border-radius: 20px;
	background-color: var(--main-gray);
	color: var(--main-white);
	margin: 15px;
	box-shadow: 4px 4px 15px gray;
}
h4 {
	font-size: larger;
	border-bottom: 1px solid white;
	padding-bottom: 10px;
	border-radius: 10px;
}
h5 {
	font-size: 16px;
}
.speed {
	color: red;
	font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
		"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
	font-size: large;
	padding: 10px;
}
#email {
	padding: 15px;
	border-radius: 8px;
	border: 1px solid gray;
	width: 250px;
}
#submit {
	padding: 15px;
	border-radius: 8px;
	background-color: greenyellow;
	border: 1px solid greenyellow;
}
#submit:hover {
    background-color: rgb(137, 218, 17);
    cursor:pointer;
}
.end {
	margin-top: 40px;
	height: 80px;
	background-color: var(--main-teal);
}
.copyright {
	padding: 15px;
}
@media all and (max-width: 750px) {
	.pricing_box {
		width: 45%;
	}
}
