@charset "utf-8";
/* CSS Document */

body {
	background-color: white;
	scroll-behavior: smooth;
}

h1,h2 {
	font-family: 'Shrikhand', cursive;
	color: black;
	font-size: 3em;
}

a {
	font-family: 'Shrikhand', cursive;
	color: white;
}

p {
	font-family: 'Shrikhand', cursive;
	color: black;
	font-size: 1em;
}

.topnav {
	background-color:black;
	overflow:hidden;
}

.topnav img {
	max-width: 25px;
	height:auto;
}

.topnav a {
  float: left;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: white;
  color: black;
}

.topnav a.split {
  float: right;
  background-color: black;
  color: white;
}

.topnav a.split:hover {
	background-color: white;
	color: black;
}

.home img {
	width: 100%;
	height: auto;
}

.home .btn {
	position: absolute;
	top: 90%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #00FE29;
	background-color: black;
	font-family: 'Shrikhand', cursive;	
	font-size: 2em;
	padding: 12px 24px;
	border: none;
	cursor: pointer;
	border-radius: 10px;
}

.home .btn:hover {
	background-color:#00fe29;
	color:black;
}

.title {
	text-align: center;
	padding: 1em 0;
}

.row a:hover{
	text-decoration: none;
	box-shadow: 5px 5px 5px #b2b2b2;
}

.card {
	width:25rem;
	margin: 0 auto;
	float:none;
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
}

footer {
	background-color: black;
	margin-top: 75px;
	padding: 5px;
	overflow: hidden;
}

footer h2{
	color: aqua;
}

footer p{
	color: #B2B2B2;
	font-size: 1.5em;
}

footer a{
	color: #B2B2B2;
}

footer a:hover {
	color: aqua;
	text-decoration: none;
}

.footer-icons {
	letter-spacing: 10px;
	min-width: 10%;
	float: left;
	display: block;
	color: #B2B2B2;
	font-size: 3em;
}

.menu {
	min-width: 50%;
	list-style: none;
	float: left;
	display: block;
	color: #B2B2B2;
	font-family: 'Shrikhand', cursive;
	font-size: 2em;
	line-height: 2em;
}

@media (max-width:600px){
	h1,h2 {
		font-size: 2em;
	}
	
	.topnav img{
		max-width:13px;
	}
	
	.topnav a {
		font-size: 0.8em;
		padding:2px 6px;
	}
	
	.home .btn {
		top: 30%;
		left: 50%;
		font-size: 0.8em;
		padding:6px 12px;
	}
	
	.card {
		width: 15rem;
	}
	
	.footer-icons {
		padding: 5px;
		float:none;
		font-size:1.5em;
	}
	
	.menu {
		float: none;
		padding:5px;
		font-size: 1.5em;
	}
}