@charset "utf-8";
/* CSS Document */

p{
	font-family: "Belanosima", sans-serif;
  font-weight: 400;
  font-style: normal;
	
	
}



h1, h2, h3, h4, h5 {
  font-family: "Patua One", serif;
  font-weight: 400;
  font-style: normal;
}


.belanosima-regular {
  font-family: "Belanosima", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.belanosima-semibold {
  font-family: "Belanosima", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.belanosima-bold {
  font-family: "Belanosima", sans-serif;
  font-weight: 700;
  font-style: normal;
}



.intro{
	position: fixed;
	z-index: 1;
	left: 0%;
	top: 0%;
	width: 100%;
	height: 100vh;
	background-color: black;
	background-size: cover;
	background-position: center;
	transition: 1s;
}

.logo-header{
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: black;
}

.logo{
	position: relative;
	display: inline-block;
	bottom: -20px;
	opacity: 0;
	text-align: center;
}

.logo.active{
	bottom: 0;
	opacity: 1;
	transition: ease-in-out 0.5s;
}

.logo.fade{
	bottom: 150px;
	opacity: 0;
	transition: ease-in-out 0.5s;
}

