body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.562); /* Koyu saydam arka plan */
    overflow: hidden;
  }
  
  .content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  hr{
    border: none; /* Sınır çizgisini kaldırır */
    background-color: #ffffff; /* Arkaplan rengini ayarlar */
    height: 1px; /* Kalınlığı ayarlar */
    opacity: 1;
  }
  .overlay {
    border-radius: 10px;
    color: white;
    width: 80%;
    text-align: left;
    margin-top: 230px;

  }
h1{
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 35px;
    margin-bottom: -10px;
}
 h2{
    font-size: 45px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    line-height: 24px;
    margin-top: 25px;

  }
  .sosyal-medya{
    margin-top: -40px ;
  }

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
  }
  .btn-yazisi{
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 30px;
  }
.buttons{
    margin-top: 120px;
}
  .btn {
    position: relative;
    background-color: #ffffffab;
    font-size: 18px;
    width: 306px;
    text-align: left;
    color: #212529;
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    border-radius: 5px;
    margin-right: 20px;
  }
  
  .btn:hover {
    background-color: #979376;
    padding-top: 20px;
    padding-bottom: 20px;
    border: 0px;
    outline: none;
    color: #212529;
    
  }
  .buttons svg{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px; /* İstenilen sağ boşluk */
  }
  a{
    text-decoration: none;
  }

  @media (max-width: 768px) {
    h2{
        font-size: 20px;
    }
    .overlay{
        width: 93%;
    }
    .btn{
        width: 130px;
        font-size: 15px;
        margin-top: 10px;
        
    }
    body{
      overflow: auto;
    }
  }
  @media (max-width: 992px) {
    .btn{
        width: 180px;
    }
  }
  .btn-dil {
    width: 50px;
    margin-right: 10px;
    margin-top: 10px;
    color: #000;
    background-color: #ffffffab;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    font-size: 15px;
    border-radius: 5px;
    transition: background-color 0.5s ease, color 0.5s ease, opacity 0.5s ease;
    opacity: 0.8;
}
.btn-dil:hover {
    background-color: #979376;
    color: white;
    opacity: 1;
}