/* 
	############################################################
	 Bu CSS Dosyası novembros tarafından oluşturulmuştur.
	############################################################
*/


/* Sabit Tanımlamalar */
.clear { clear: both; }

html,body{
	height: 100%;
}

/* Site Kodları */
Body {
	margin: 0;
	padding: 0;
	background-color: #000;
	color: #f1f1f1;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.cont {
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
}

.logo {
	padding: 30px 40px;
	margin-right: 50px;
	border-right: .5px solid #e6ac73;
}

.logo img {
	width: 100%;
}

.inf a {
	color: #f1f1f1;
	font-size: 16px;
	display: block;
	text-decoration: none;
	font-weight: 300;
	line-height: 23px;
	margin-bottom: 20px;
	transition: all .2s linear;
}

.inf a:hover {
	color: rgba(255,255,255,.76);
}


@media (max-width: 768px){
	.cont {
		flex-direction: column;
	}
	.logo {
		width: 80% !important;
		border: none;
		padding-left: 0;
		padding-right: 0;
		margin-right: 0;
	}
	.logo svg {
		margin: 0 auto 25px auto;
	}
	.inf a {
		text-align: center;
	}
}