:root {

}

html, body 
{
		padding: 0px;
		margin: 0px;
		width: 100%;
		height: 100%;
		background: #ffffff;
		color: #303030;
		overflow: hidden;
		font-family: 'Poppins', sans-serif;
}

body 
{
	background: #002b41 url('../img/bg.jpg') top center no-repeat;
		background-size: cover;
}

body * {
	font-family: sans-serif;
	box-sizing: border-box;
	}


#logo {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
	}
	
#logo img {
	width: 100%;
	height: auto;
	}
	
#logo img#logo1,
#logo img#logo2 {
	position:absolute;
	top: 0px;
	left: 0px;
	}
	
#logo img#logo1 {
	animation: fade1 6s infinite ease-in;
	}
	
#logo img#logo2 {
	animation: fade2 6s infinite ease-in;
	}

@keyframes fade1 {
	0% {
		opacity: 0;
	}
	8.33% {
		opacity: 1;
	}
	50.00% {
		opacity: 1;
	}
	58.33% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fade2 {
	0% {
		opacity: 1;
	}
	8.33% {
		opacity: 0;
	}
	50.00% {
		opacity: 0;
	}
	58.33% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}

#sign {
	position: fixed;
    left: 0px;
	right: 0px;
	z-index: 5;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s ease-out 0.5s;
	transform: translateY(-50%);
	bottom: 0px;
	height: 80px;
	}
	
#sign img {
	width: auto;
    height: 100%;
	}
	

#imageContainer {
	position: fixed;
    top: 25vw;
    left: 30px;
    right: 30px;
    bottom: 80px;
    filter: blur(0px);
    transition: all 0.3s ease-out;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease-out;
	}

body.email #imageContainer {
	filter: blur(4px);
	}
	
body.loaded #imageContainer {
	opacity: 1;
	}

body.loaded #sign {
	opacity: 1;
	}

#imageRatio {
	position: relative;
	}
	
#userImage {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	}

#disconnect {
	position:fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url('bg.jpg') center center no-repeat;
	background-size: cover;
	font-size: 30px;
	font-weight: bold;
	}
	
