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

body, html {
	font-family: "Playfair Display", serif;
	height: 100%;
	width: 100%;
	position: relative;
	background: url("../images/background/background.jpg") center center;
	background-size: cover; 
}

a, a:link, a:active, a:visited {
	outline: none;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

div {
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.42, 1.64, 0.6, 1.2) 1s;
	transform: translateY(-400px);
	height: 100%;
}

div.active {
	opacity: 1;
	transform: translateY(0px);
}

div span {
	display: flex;
	flex-direction: column;
	align-items: center;
}

div span img {
	width: 400px;
	height: auto;
}

div span a {
	margin-top: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: solid 2px #d7ae34;
	height: 60px;
	width: 60px;
	position: relative;
	color: #d7ae34;
}

div span a:hover {
	color: #ffffff;
	background: #d7ae34;
}

div span a:hover ~ p {
	transform: translateY(0px);
	opacity: 1; 
}
		
div span p {
	color: #d7ae34;
	text-transform: uppercase;
	margin-top: 20px;
	font-size: 1.5em;
	transform: translateY(200px);
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

@media only screen and (max-width: 680px) {
	div span img {
		width: 350px; 
	} 
}

@media only screen and (max-width: 380px) {
	div span img#pandapanda-logo {
		width: 270px; 
	} 
}