* {
	margin: 0;
	padding: 0;
}

html {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

body {
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom right, #333c73, #285fa0, #2b96ba) fixed;
}

img {
	user-select: none;
}

div {
	user-select: none;
}

a {
	user-select: none;
}

@font-face {
	font-family: Cabin;
	src: url('../assets/fonts/Cabin-Regular.ttf');
}

@font-face {
	font-family: pollerOne;
	src: url('../assets/fonts/pollerone-min.ttf');
}

.clouds-nav {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 5;
	text-align: center;
}

.clouds-title {
	color: #ffffff;
	font-family: pollerOne;
	font-size: 50px;
	text-decoration: none;
	text-shadow: 2px 2px 5px #454545;
	display: inline-block;
	margin: 50px 0px;
}

.clouds-title:visited {
	color: #ffffff;
}

.clouds-title:hover {
	color: rgba(255, 255, 255, 0.8);
}

.clouds-link {
	color: #ffffff;
	font-family: Cabin;
	font-size: 35px;
	text-decoration: none;
	text-shadow: 2px 2px 5px #454545;
	display: inline-block;
	margin: 10px 0px;
	border-bottom: 5px solid transparent;
}

.clouds-link:after {
	display: block; 	
	width: 100%; 	
	content: ""; 	
	border-bottom: solid 5px #D6FAFF; 	
	transform: scaleY(0); 	
	transition: transform 250ms ease-in-out;
}

.clouds-link:hover:after {
	transform: scaleY(1);
}

