@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');
*{
	box-sizing: border-box;
	font-family: 'PT Sans Narrow', sans-serif;
	text-decoration:none;
}
a{
	color: #000;
	cursor: pointer;
}
a:hover{
	color: #b35707;
}
body{
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	height: 100%;
	width: 100%;
}
body:before{
	content: "";
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -10;
	background: url(../background.jpg) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.ilet_kutu{
	max-width: 455px;
	background: #fff;
	padding: 20px;
	margin: 10px;
	border-radius: 10px;
	box-shadow: 0 0 16px #dfdfdf;
}
.ilet_kutu div{
	font-size: 20px;
	margin-bottom: 8px;
}
.ilet_kutu img{
	display: block;
	width: 200px;
	margin: 0 auto;
}
.ilet_kutu strong{
	color: #d86603;
	font-size: 22px;
	font-weight: 700;
}