body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
  }
  
  header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f97f00;
    color: white;
  }
  
  header .navbar a.logo img {
    height: 50px;
  }
  
  main {
    padding: 20px;
  }
  
  .haber-detay {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .haber-baslik h1 {
    font-size: 28px;
    color: black;
    margin-bottom: 5px;
  }
  
  .haber-baslik .haber-tarih {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
  }
  
  .haber-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    
  }
  
  .haber-content .haber-gorsel img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .haber-content .haber-metin {
    line-height: 1.8;
    text-align: justify;

  }
  
  .geri-don-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .geri-don-link:hover {
    background-color: #0056b3;
  }
  
  footer {
    text-align: center;
    margin-top: 40px;
    padding: 10px;
    background-color: #f9f9f9;
    color: #777;
  }
  


  