@font-face {
	font-family: "theme-font";
	src: url("../fonts/Comfortaa-Regular.ttf");
}

html {
	height: 100%;
	background-color: #f1f1f1;
}

body {
	margin: 0px;
}

h1 {
	font-size: 40px;
	color: #202020;
	text-align:center;
	font-family: theme-font;
	margin-top: 0px;
}

h2 {
	font-size: 27px;
    color: #202020;
    text-align: left;
    font-family: theme-font;
    margin-top: 60px;
	margin-bottom: 0px;
	margin-left: auto;
    margin-right: auto;
	width: 750px;
}

h3 {
    font-size: 20px;
    color: #ff6400;
    text-align: left;
    font-family: theme-font;
    margin-top: 35px;
    margin-bottom: -20px;
    margin-left: auto;
    margin-right: auto;
    width: 750px;
}

p {
	margin-left: auto;
	margin-right: auto;
	margin-top: 35px;
	margin-bottom: 35px;
	width: 750px;
	font-size: 20px;
	text-align: left;
	font-family: theme-font;
	line-height: 160%;
}

p a  {
    text-decoration: none;
    color: #ff6400;
}

p a:visited {
    text-decoration: none;
    color: #ff6400;
}

p span {
    display: block;
    font-family: theme-font;
    font-size: 20px;
}

img::selection {
    background-color: transparent;
}

img {
    user-select: none;
}

#topbar {
	display: block;
	background-color: #ff6400;
	height: 120px;
	width: 100%;
	box-shadow: 0px 8px 8px #d0d0d0;
    padding-bottom: 10px;
}

#topbar span {
	font-size: 40px;
	padding-top: 37px;
	font-family: theme-font;
}

#menubar {
	width: 45%;
	padding-left: 5%;
	margin-top: 60px;
	margin-bottom: 70px;
	float: left;
}

#menubar a {
    text-decoration: none;
    color: #999999;
    font-family: theme-font;
    font-size: 20px;
    margin-right: 40px;
    padding-bottom: 4px;
    float: left;
    border-bottom: 2px solid rgba(255, 100, 0, 0);
}

#menubar a:hover {
    border-bottom: 2px solid #ff6400;
    animation-name: menubar_hover;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

#menubar .active {
    border-bottom: 2px solid #ff6400;
}

#menubar .active:hover {
    animation-name: none !important;
}

#lang_bar {
    width: 45%;
    padding-right: 5%;
    margin-top: 60px;
    margin-bottom: 70px;
    float: right;
}

#lang_bar a {
    text-decoration: none;
    color: #999999;
    font-family: theme-font;
    font-size: 16px;
    margin-left: 25px;
    padding-bottom: 4px;
    float: right;
}

#lang_bar a:hover {
    border-bottom: 1px solid #999999;
    animation-name: langbar_hover;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

#lang_bar .active {
    border-bottom: 1px solid #999999;
}

#lang_bar .active:hover {
    animation-name: none !important;
}

#logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: 100%;
}

.logo_white {
    color: #ffffff;
	width:50%;
	text-align:right;
	display: block;
	float: left;
}

.logo_orange {
	background-color: #ffffff;
	color: #ff6400;
	margin-left: 5px;
	padding-right: 10px;
	padding-top: 37px;
	float:left;
	
}

.logo_by {
	display:block;
	font-size: 15px !important;
	clear:left;
	width: 45%;
	float:right;
	color: #ffffff;
	font-family: theme-font;	
	padding-top: 8px !important;
}

#content {
	width: 100%;
    clear: both;
}

.vertical_alignment_helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.fileinfo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	margin-bottom: 100px;
	padding: 10px;
	width: 600px;
	text-align:center;
	color: #999999;
	font-size: 25px;
	border: 1px solid #afafaf;
	border-left-width: 0px;
	border-right-width: 0px;
}

.fileinfo span {
	display: block;
	margin: 4px;
	font-family: theme-font;
}

#footbar {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	height: 60px;
	margin-top: 80px;
	margin-bottom: 50px;
	border-top: 1px solid #afafaf;
	color: #999999;
	padding-top: 15px;
	clear: left;
}

#footbar span {
	font-size: 15px;
	padding-left: 20px;
	font-family: theme-font;
	float: left;
}

#footbar a {
	float: right;
	font-family: theme-font;
	font-size: 15px;
	padding-left: 15px;
	padding-right: 15px;
	border-right: 1px solid #999999;
	color: #999999;
	text-decoration: none;
} 

@keyframes menubar_hover {
    from {
        border-bottom: 2px solid rgba(255, 100, 0, 0);
    }

    to {
        border-bottom: 2px solid rgba(255, 100, 0, 1);
    }
}

@keyframes langbar_hover {
    from {
        border-bottom: 1px solid rgba(153, 153, 153, 0);
    }

    to {
        border-bottom: 1px solid rgba(153, 153, 153, 1);
    }
}

