* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	font-family: Arial, sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #FFFFFF;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	position: relative;
}

.logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 75%;
	height: 75%;
	background-color: #FFFFFF;
	border: none;
}

.footer {
	position: absolute;
	bottom: 10px;
	text-align: center;
	font-size: 8px;
	width: 100%;
}