h1 {
	font-family: 'Exo 2', sans-serif;
}

p, ul, h2 {
	font-family: 'Exo 2', sans-serif;
	color: black;
}

a {
	color: black;
	text-decoration: none;
}

body {
	margin: 0px;
}

.Header {
	display: flex;
	margin: auto;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	height: 130px;
}


.Header .Title {
	justify-content: center;
	margin: 0px;
}

.Header .Title h1{
	margin: 0px;
}

.Header .Title p{
	margin: 0px;
}

.NavDiv {
	display: flex;
	align-items: center;
	margin: 0px;
	padding: 0px;
	width: 200px;
}

.NavList{
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 0px;

}


.LargeContainer {
	width: 90%;
	margin: auto;
	/*margin-top: 50px;*/
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 10vh;
}

.MyDiv {
	height: 20vw;
	width: 20vw;
	margin-top: 3vw;
	position: relative;
	animation-name: SlideLeft;
	animation-duration: 0.4s 
}
/*
.MyDiv h2, p, a{
	color: white;
}*/

.LargeContainer .MyDiv img {
	border-radius: 10px;
	max-height:100%; max-width:100%;
}

.content {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	opacity: 0%;
	transition: 0.6s;
	color: white;
}

.content h2 {
	margin: 0;
	font-size: 1.5vw;
	margin-left: 12px;
	margin-bottom: 10px;
	color: white;
}

.content p {
	margin: 0;
	font-size: 10px;
	margin-right: 12px;
	margin-bottom: 10px;
	color: white;

}

.content a {
	color: white;

}


.content:hover{
	opacity: 90%;
	background: linear-gradient(rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
	border-radius: 10px;
}

.LargeContainer .MyDiv img :hover{
	opacity: 10%;
}



@keyframes SlideLeft {
	0% {
		transform: translateY(20%);
		opacity: 0%;
	}
	100% {
		transform: translateY(0);
		opacity: 100%;
	}
}
