body {
  height: 100%;
  font-family: Arial, sans-serif;
  position: fixed;
  display: block;
  width: 100%;
}

/* Video kapsayıcısı */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  /* İçeriğin arkasında kalması için */
}

/* Videonun tam ekran görünmesi için */
#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Video ekrana sığacak şekilde ayarlanır, kesme olabilir */
}

/* İçerik bölümü */
.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

h1 {
  font-size: 3em;
}

p {
  font-size: 1.5em;
}

.content-wrapper {
    margin: auto;
}
a:hover {
	font-size: 1.1em;
  }
  .logo {
	margin: auto;
	max-width:600px; 
	margin-top: 50px;
	padding: 10px;
  }
  .logo img {
	width: 100%;
  }
  a{
	color: white;
	text-decoration: none;
	transition: font-size 0.5s;
  }
  li{
	display: inline-block;
	margin: 10px;
  }
  ul{
	min-height:50px;
  }
  .tel{
	font-size: 20px;
  }

  @media only screen and (max-width: 768px) {
	li{
		display: block;
		margin: 30px 10px;
	}

	li a {
		font-size: 22px;
	}
	ul{
		margin-top:150px;
	}

}