@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap');
/* CSS Document */

* {margin: 0; padding: 0; }

body {
	padding:0px;
	margin:0px;
	background: #FFFFFF;
	font-family: 'Lora', serif;
	font-weight: 400;
	color: #000000;
	font-size: 16px;
}

html, body { height: 100%; }
  
.full-height { 
	height: 100%; 
	background-image: url(img/back.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#wrapper {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	text-align: center;
}

.logo img{
	width: 500px;
}

.info h2 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 40px;
	margin-top: 40px;;
}

.info {
	text-decoration: none;
	background: center;
}

.info a {
	text-decoration: none;
	display: block;
	color: #ffffff;
	padding: 10px;
	display: inline-block;
	border-radius: 8px;
	border: 2px solid #ffffff
}

.info a:hover {
	background-color: #FFFFFF;
	color: #000;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}


