html {
    font: normal 16px/1.4 Arial, Verdana, sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-y: scroll;
    color: #000;
    background-color: linear-gradient(to bottom, rgb(255, 255, 255), rgba(120,120,120,0.4));
}

body {
	margin: 0;
	 font-family: Arial, Verdana, sans-serif;
    font-size: 16px;
    color: rgb(65, 65, 65);
    }

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
    opacity: 0.5;
    transition: all 0.85s ease;
    background: rgb(120, 120, 120);
    background: linear-gradient(to bottom, rgb(222 222 222), rgb(189 189 189));
}
a {  }
a:active,
a:hover { outline: 0; }
a {
    color: #2498e3;
    text-decoration: none;
    cursor: pointer;
    background-color: transparent;
}
a:hover {
    color: #188dd9;
    text-decoration: none;
}
img {
	box-sizing: border-box;
	border: 0;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
	opacity: 1;
	text-align: center;
	transition: all 0.2s ease-in-out;
	transform: scale(1);
}
img:hover {
	opacity: 1;
	transform: scale(1);
}
.page-container {
	width: 100%;
	height: 100%;
	text-align: center;
	opacity: 0;
	transition: all 0.85s ease;
}
.page-content {
    margin: 0 auto;
    padding: 9vh 50px;
    max-width: 50%;
    text-align: center;
    font-size: 1em;
    background: rgb(255, 255, 255);
    min-height: 88vh;
    margin: 5vh auto;
	transition: all 0.85s ease;
}
.page-footer {
    padding: 5px 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    border: 0px;
    background: #e4e4e4;
    font-size: 12px;
    line-height: 24px;
    display: block;
    position: fixed;
    bottom: 3px;
    width: 100%;
}
.page-footer a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}
.page-footer a:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
    .page-footer {
        padding-right: 20px;
        padding-left: 20px;
    }
}
@media (max-width: 1200px) {
	.page-content {
		max-width: 70%;
	}
}
.page-container {
	opacity: 1;
}