@import url("style.css");

.topbanner {
	width: 1120px;
	background-image: url();
	margin: 30px auto;
	border-radius: 10px;
	border: 1px solid #00B4CC;
	padding: 20px;
	text-align: justify;
}

.topbanner > h2 {
	color: #00B4CC;
	font-size: 2em;
}

/* Mobil Navbar */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 400; /* Stay on top */
  background: rgb(16,48,107);
  background: linear-gradient(90deg, rgba(16,48,107,1) 0%, rgba(0,180,204,1) 100%);
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 15px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  overflow-y: visible;
  opacity: 0.98;
}

/* The navigation menu links */
.sidenav a {
  padding: 10px 8px 0px 35px;
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
  font-weight: 300;
}
.sidenav a span
{
  font-size: 12px;
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #1cb4c5;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 20px;
  margin-left: 50px;
}

.mobil {
	position: absolute;
	float: right;
	visibility: hidden;
	top: 10px;
	right: 10px;
}

.page-content {
	width: 1120px;
	background-image: url();
	border-radius: 5px;
	text-align: justify;
	margin: 20px auto;
	border: 1px solid #e2e2e2;
	padding: 20px;
}

.page-content > h2 {
	color: #00B4CC;
	font-size: 2em;
}

.page-content > span > a {
	color: #000;
}

.page-content > span > a:hover {
	color: #00B4CC;
	text-decoration: none;
}




/*Mobil Kısım */
	@media screen and (max-width: 600px){
		.mobil {
			float: right;
			visibility: visible;
			margin-top: 10px;
			margin-right: 20px;
			position: fixed;
			z-index: 999;
		}

		.page-content {
			width: 95%;
			background-image: url();
			border-radius: 5px;
			text-align: left;
			margin: 10px auto;
			padding: 10px;
		}

		.page-content > h2 {
			color: #00B4CC;
			font-size: 1.2em;
		}

	}

/*Tablet Kısım */
	@media screen and (min-width: 601px) and (max-width: 1000px) {

		.page-content {
			width: 900px;
			border-radius: 5px;
			text-align: left;
			margin: 20px auto;
			padding: 15px;
		}

		.page-content > h2 {
			color: #00B4CC;
			font-size: 1.7em;
		}
	}





