@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
   
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}
header .navbar {
  background: #34343433;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
padding: 15px;

}
.navbar .logo { /*LOGO*/
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 2.5rem;
  text-decoration: none;
margin-left: 30px;
}

.navbar .menu-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin-right: 30px;
}
.navbar a {/*link*/
  color: rgb(0, 0, 0);
  text-decoration: none;
  transition: 0.2s ease;
}
.navbar a:hover {/*link üstüne gelince*/
  color: rgb(246, 237, 200);
}
.topnav {
  overflow: hidden;
  width: 100%;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #e2efb8;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
    header {
      padding: 10px;
    }
   
    .navbar .logo {
      font-size: 1.7rem;
    }
     .hero-section .content {
      text-align: center;
    }
    .hero-section .content :is(h2, p) {
      max-width: 100%;
    }
    .hero-section .content h2 {
      font-size: 2.3rem;
      line-height: 60px;
    }
    
    .hero-section .content button {
      padding: 9px 18px;
    }
  
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
.hero-section {/*arka sayfa*/
  height: 100vh;
  background-position: right;
  background-size:50% 50%;/*tüm div kaplama*/
  display: flex;
  align-items: center;
  padding: 0 20px;
  background-image:url('image/e2.jpg');
  background-repeat: no-repeat;
}
.hero-section .content {/*giriş div genel */
  max-width: 50%;
  margin: 0 auto;
  width: 100%; 
  color:rgb(0, 0, 0);
  position: absolute;
}
.hero-section .content h2 {/*giriş başlık*/
  font-size: 3rem;
  max-width: 600px;
  line-height: 70px;
  text-align: left;
}
.hero-section .content p {/*giriş yazı*/
  font-weight: 300;
  max-width: 600px;
  margin-top: 15px;
}
.hero-section .content button {/*giriş buton ilk görünüm*/
  background: #faf9e8;
  padding: 12px 30px;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  margin-top: 38px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
}
.hero-section .content button:hover {/* giriş buton üstüne gelince*/
  color: #fcf7f7;
  background: rgb(0, 0, 0);
}
h3{
  text-align: center;
  font-size: 30px;
  color: rgb(44, 31, 11);
}
h4{
  text-align: justify;
  font-size: 20px;
  color: rgb(44, 31, 11);
}
h5{
  font-size: 15px;
  color: rgb(44, 31, 11);
}
