@font-face{
	font-family: "Rodin";
	src: url("SCE-PS3 Rodin LATIN Regular.otf") format("opentype");
	font-weight: normal;
	font-style: normal;
}

html, body{
	overscroll-behavior: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	overflow-y: hidden;
}

body{
	font-size: 12px;
	color: #FFFFFF;
	background-color: #27262b;
	background-image: url("bg.png");
	background-repeat: no-repeat;
	-moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-attachment: fixed;
	background-position: 0 0; 	
    color: #FFFFFF;
	margin: 0;
}

.main{
	display: flex;
	margin-bottom: 30px;
	height: 100vh;
	scrollbar-gutter: stable;
	justify-content: center;
}

.window{
	margin-top: 40px;
	margin-bottom: 70px;
	border: 2px solid #2e499b;
	border-radius: 25px;
	background: rgba(32, 32, 32, 0.7);
	padding: 60px;
}

.window a{
	font-family: "Rodin";
	padding: 8px 8px 8px 8px;
	text-decoration: none;
	font-size: 2vh;
	color: white;
	display: block;
}

.window a:hover{
	color: #C0C0C0;
	transition: color 0.5s ease;
}

.logo{
	display: block;
	width: 100px;
	margin: 0 auto 25px auto;
	border-radius: 50%;
	border: 2px solid #2E499B;
}

.footer{
	display: flex;
	align-items: center;
	justify-content: center;
    position: fixed;
    bottom: 0;
	left: 0;
	width: 100%;
	height: 32px;
	color: #959396;
	background-color: rgba(32, 32, 32, 0.7);
	border-top: 1px solid #2e499b;
    font-size: 12px;
}
.footer a{
	color: #959396;
	text-decoration: none;
}
a:visited{
	text-decoration: none;
	color: inherit;
}

@media only screen and (max-width: 600px){
	.window{
		margin-top: 0;
		padding-top: 20px;
		border: none;
		border-radius: 0;
		padding: 20px;
		padding-bottom: 30px;
		background: none;
	}
}