* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	width: 100%;
	height: 100vh;
	margin: 0;
}

body {

	background: #F5F6F7;
	background: radial-gradient(#FFFFFF 45%, #CFD0D1);
}

div.main {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: logo 1.3s;
}

img.logo {
	width: 50%;
	margin-right: 5rem;
}

div.social {
	text-align: center;
}

div.social ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-block;
	display: flex;
	flex-direction: column;
}

div.social ul>li {
	text-align: center;
	margin-bottom: 2rem;
}

div.social ul>li:last-child {
	margin-bottom: 0
}

div.social ul>li a img {
	transition: 0.3s;
}

div.social ul>li a:hover img {
	transform: scale(1.2);
}

.noel {
	position: absolute;
	left: 2%;
	width: 96%;
	top: 50%;
	transform: translateY(-50%);
	fill: #992826;
	animation: blinker 5s linear infinite;
}

.newyear {
	position: absolute;
	left: 2%;
	width: 96%;
	top: 50%;
	transform: translate(0, -50%);
	animation: blinker 15s linear infinite;
}

@keyframes blinker {
	50% { opacity: 0; }
}

@keyframes logo {
	from {
		opacity: 0.3;
	}
	to {
		opacity: 1;
	}
}