body {
	background-color: #4693F8;
	font-family: monospace;
}
.horizontal {
	width: 50vw;
	height: 5px;
	margin: 0 25% 0 25%;
	background-color: white;
	box-shadow: 0px 5px 7px #242424;
	-webkit-animation: bounceIn 2s ease-in-out;
	animation: bounceIn 2s ease-in-out;
}
@keyframes bounceIn {
	0% {
		transform: scale(0.1);
		opacity: 0;
	}
	80% {
		transform: scale(1.1);
		opacity: 1;
	}
	100% {
		transform: scale(1);
	}
}
@-webkit-keyframes bounceIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
.search_text {
	margin: 30vh auto 0 auto;
	text-align: center;
	font-size: 7vw;
	color: white;
}
.search_icon {
	margin: 2vh auto 0 auto;
	display: block;
	border-radius: 1000px;
}
.search_box {
	margin: 2vh auto 0 auto;
	height: 20px;
	width: 0px;
	text-align: center;
	border-radius: 1000px;
	box-shadow: 5px 6px 10px #242424;
	border: 1px solid rgba(0, 0, 0, 0);
	font-size: 5vw;
	display: none;
	outline: none;
}
.result {
	color: white;
	font-size: 15px;
	margin-top: 5vh;
	transition: margin 0.4s;
}
#heading {
	color: #00695C;
}
a:hover {
	text-decoration: none;
}
@media only screen and (min-width: 320px) {
	.search_text {
		font-size: 30px;
	}
	.search_icon {
		width: 30pt;
	}
	.horizontal {
		height: 2px;
		box-shadow: 0px 2px 5px #242424;
	}
	.search_box {
		height: 30px;
	}
	#heading {
		font-size: 20px;
	}
	#description {
		font-size: 15px;
	}
}
@media only screen and (min-width: 375px) {
	.search_text {
		font-size: 40px;
	}
	.search_icon {
		width: 45px;
	}
	.horizontal {
		height: 3px;
		box-shadow: 0px 2px 5px #242424;
	}
	.search_box {
		height: 30px;
	}
	#heading {
		font-size: 25px;
	}
	#description {
		font-size: 15px;
	}
}
@media only screen and (min-width: 425px) {
	.search_box {
		font-size: 4vw;
	}
	.search_icon {
		width: 45px;
	}
}
@media only screen and (min-width: 768px) {
	.search_text {
		margin: 25vh auto 0 auto;
		font-size: 6vw;
	}
	.search_icon{
		width: 50px;
	}
	.search_box {
		font-size: 20px;
		height: 40px
	}
	#heading {
		font-size: 30px;
	}
	#description {
		font-size: 20px;
	}
}
@media only screen and (min-width: 1024px) {
	.search_box {
		font-size: 30px;
		height: 60px;
	}
	.horizontal {
		height: 5px;
		box-shadow: 0px 3px 7px #242424;

	}
	.search_icon {
		width: 70px;
	}
	#heading {
		font-size: 32px;
	}
	#description {
		font-size: 25px;
	}
}
@media only screen and (min-width: 1440px) {
	.search_box {
		font-size: 40px;
		height: 70px;
	}
	.horizontal {
		height: 5px;
		box-shadow: 0px 3px 7px #242424;

	}
	.search_icon {
		width: 100px;
	}
	#heading {
		font-size: 45px;
	}
	#description {
		font-size: 35px;
	}
}