@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
}

h1 {
  font-weight: 300;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 15px;
}

/* Giriş Bölümü */
.intro {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
/* Giriş Bölümü Bitiş */

/* Konumlandırma */
.container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #333;
}
.container video {
    min-width: 100%;
  min-height: 100%;
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.res {
width: 100%;

  height: 100%;

    position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  object-fit: cover;
	
}

/* Video Konumlandırma Bitiş */

/* Karartma Efekti */
.container:after {
  content: '';
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
}
/* Karartma Efekti Bitiş */

.content {
  z-index: 2;
	 font-size: 30px;
}
.content img { margin-bottom: 30px;}
.social { display:block; margin:30px 0;}

/*.social a {display:inline-block; float:inherit; width: 137px; height: 50px; background: url(images/instagram-buton.png) 0 0 no-repeat;}
.social a:hover {background-position: -137px 0; -webkit-transition:none; -moz-transition:none; -o-transition:none; transition:none;}*/

.social a {display:inline-block; float:inherit; width: 137px; height: 50px; background: url(images/instagram-buton.png) -137px 0 no-repeat;animation: blink 2s infinite;}
.social a:hover {background-position: -137px 0; -webkit-transition:none; -moz-transition:none; -o-transition:none; transition:none; animation: none }
@keyframes blink {
  from {opacity: 0;}
  to {opacity: 100%;}
}

insbutton { border: none; color: #fff; text-decoration: none; width: fit-content; margin: auto; cursor: pointer; }
.read-more {
  display: inline-block;
  padding: 10px 30px;
  background: #333;
  color: #fff;
  border-radius: 5px;
  border: solid #fff 1px;
  margin-top: 25px;
  opacity: 0.8;
    transition: .2s all;
    text-decoration: none;
}

.read-more:hover {
  transform: scale(.9);
}

/* İçerik (Opsiyonel) */
#page {
  padding: 40px;
  text-align: center;
}

#page p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
}

#page h2 {
  margin: 30px 0;
  color: #333;
}


/* İçerik Bitiş */
