a {
	overflow-wrap: break-word;
	color: unset;
}

a:focus {
	outline: 0;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: lighter;
	padding-top: .4em;
}

html {
	scrollbar-color: #404040 #171717;
	scrollbar-width: thin;
}

body,html {
	margin: 0;
	width: 100%;
	height: 100%;
}

body {
	background-color: #191919;
	font-family: Roboto;
	color: #e3e3e3;
	font-weight: lighter;
	overflow-x: hidden;
}

@media only screen and (min-width:1100px) {
	body::-webkit-scrollbar {
		width: .5em;
	}

	body::-webkit-scrollbar-track {
		background-color: #171717;
	}

	body::-webkit-scrollbar-thumb {
		background-color: #404040;
	}
}

@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

header {
	position: relative;
	width: 100%;
	height: 150px;
	background-color: #0c0c0c;
	z-index: 1;
	box-sizing: border-box;
}

header>a>img {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 40%;
	max-width: 90%;
	transform: translate(-50%,-50%);
}

main {
	display: block;
	position: relative;
	margin: auto;
	max-width: 1000px;
	min-height: calc(100% - 200px);
}

article {
	padding: 3% 2% 3% 2%;
	box-sizing: border-box;
	font-size: 18px;
	animation: fadein .25s ease-in-out;
}

article a {
	color: #4c84dd;
	text-decoration: none;
}

article a:hover {
	text-decoration: underline;
}

.logo {
	width: 100%;
	height: 130px;
	border-bottom: 2px solid #202020;
	margin-bottom: 50px;
}

footer {
	position: relative;
	margin: auto;
	width: 100%;
	height: 150px;
	color: #cecece;
	background-color: #0c0c0c;
	z-index: 1;
}

.footer_wrapper {
	max-width: 900px;
	height: 100%;
	margin: auto;
	display: flex;
	justify-items: center;
	justify-content: space-between;
	font-size: .8em;
}

.footer_side {
	position: relative;
	height: 100%;
	width: 30%;
}

.footer_side>div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin: 0;
}

.footer_social {
	display: flex;
	position: relative;
	justify-content: space-around;
	align-items: center;
	width: 120px;
}

.footer_social div {
	display: inline-flex;
	position: relative;
	width: 35px;
	height: 35px;
}

.footer_social div img {
	opacity: .7;
	width: 100%;
}

.footer_side>div {
	display: inline-block;
	white-space: nowrap;
}

.footer_wrapper a {
	color: #cecece;
	text-decoration: none;
}

.title:first-of-type {
	margin-top: 3%;
}

.title {
	text-align: left;
	padding-bottom: .5%;
	font-size: 2em;
}

.info {
	color: #bfbfbf;
	text-align: center;
	padding: 3%;
}

.ad {
	max-width: 500px;
	margin: auto;
	padding: .5em;
	box-sizing: border-box;
}

@media only screen and (max-width:600px) {
	.footer_wrapper {
		justify-content: space-around;
	}
}
