body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-image: url(../images/1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


header {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 10px 0;
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(150, 150, 150, 0));
}

header .logo img {
  max-width: 550px;
  height: auto; /* Görsel oranını korur */
}
nav ul li{
  list-style: none;
}
nav ul li a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.2s ease-in-out;
}


nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(9, 219, 219);
  transform: scaleX(0);
  transition: transform 0.2s ease-in-out;
}


nav ul li a:hover::after {
  transform: scaleX(1);
}

.container h6{
  text-align: right;
  margin: 0px;
}

.container h6 a{
  text-decoration: none;
  color: rgb(255, 255, 255);
}


.banner {
    display: flex;
    flex-direction: column;
    border-radius: 15px 15px 0 0;
    width: 91.4%;
    padding: 7px;
    margin: auto;
    align-items: center;
    justify-content: center;
    min-height: 20vh;
    text-align: center;
    font-size: 2rem;
    background-color: rgba(255, 255, 255, 0.85);
  }

  .orta {
    display: flexbox;
    width: 90%;
    height: auto;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
  }
  .orta img{
    width: 350px;
    height: auto;
    margin: auto;
    padding: 0 50px;
    border-radius: 100px;
}
.orta p{
    padding: 30px;
    font-size: 15px;
    font-weight: bold;
}
.text {
    width: 90%;
    margin: auto;
    height: auto;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.85);
    font-weight: bold;
    border-radius: 0 0 15px 15px;
    padding: 20px;
    text-align: center; /* Metni ortalamak için */
  }
  
footer {
  background: linear-gradient(to bottom, rgba(150, 150, 150, 0), rgb(0, 0, 0));
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  padding: 20px;
}

html {
 scroll-behavior: smooth;
}
  

  /* Media Queries -------------------------------------------------------------------- */
  
  /* Ekran ölçüsü 768px ve üzeri için */
  @media only screen and (min-width: 768px) {
    body {
      width: 100%;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      background-image: url(../images/1.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }
    
    
    header {
      width: 100%;
      display: flex;
      list-style: none;
      justify-content: center;
      padding: 20px 0;
      background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(150, 150, 150, 0));
    }
    
    header .logo img {
      max-width: 100%;
      height: 50px; /* Görsel oranını korur */
    }
    
    
    header nav ul {
      display: flex;
      list-style: none;
      justify-content:center;
      font-size: 5px;
    }
    
    header nav ul li {
      font-size: 11px;
      margin:auto;
    }
    
    header nav ul li a {
      font-weight: bold;
      text-decoration: none;
      color: #ffffff;
      font-weight: bold;
    }
    
    header nav ul li a:hover {
      color: rgb(9, 219, 219);
    }
    
    .container h6{
      width:100%;
      text-align: right;
      margin: 0;
    }
    
    .container h6 a{
      text-decoration: none;
      color: rgb(255, 255, 255);
    }
    
    .banner {
        display: flex;
        flex-direction: column;
        border-radius: 15px 15px 0 0;
        width: 91.4%;
        padding: 7px;
        margin: auto;
        align-items: center;
        justify-content: center;
        min-height: 20vh;
        text-align: center;
        font-size: 2rem;
        background-color: rgba(255, 255, 255, 0.85);
      }
    
      .orta {
        display: flex;
        width: 90%;
        height: auto;
        margin: auto;
        background-color: rgba(255, 255, 255, 0.85);
        padding: 20px;
      }
      .orta img{
        width: 400px;
        height: auto;
        margin: auto;
        padding: 0 50px;
        border-radius: 100px;
    }
    .orta p{
        padding: 30px;
        font-size: 15px;
        font-weight: bold;
    }
    .text {
        width: 90%;
        margin: auto;
        height: auto;
        font-size: 15px;
        background-color: rgba(255, 255, 255, 0.85);
        font-weight: bold;
        border-radius: 0 0 15px 15px;
        padding: 20px;
        text-align: center; /* Metni ortalamak için */
      }
      
    footer {
      background: linear-gradient(to bottom, rgba(150, 150, 150, 0), rgb(0, 0, 0));
      color: #fff;
      text-align: center;
      font-size: 0.9rem;
      padding: 20px;
    }
    
    html {
     scroll-behavior: smooth;
    }
  }
  
  /* Ekran ölçüsü 480px ve üzeri için ---------------------------------------------*/
  @media only screen and (max-width: 480px) {
    body {
      width: 100%;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      background-image: url(../images/1.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }
    
    
    header {
      width: 100%;
      display: flex;
      list-style: none;
      justify-content: center;
      padding: 20px 0;
      background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(150, 150, 150, 0));
    }
    
    header .logo img {
      max-width: 100%;
      height: 50px; /* Görsel oranını korur */
    }
    
    
    header nav ul {
      display: block;
      list-style: none;
      justify-content:center;
      font-size: 5px;
    }
    
    header nav ul li {
      font-size: 11px;
      margin:auto;
    }
    
    header nav ul li a {
      font-weight: bold;
      text-decoration: none;
      color: #ffffff;
      font-weight: bold;
    }
    
    header nav ul li a:hover {
      color: rgb(9, 219, 219);
    }
    
    .container h6{
      width:300px;
      text-align: right;
      margin: 0;
    }
    
    .container h6 a{
      text-decoration: none;
      color: rgb(255, 255, 255);
    }
    .banner {
        display: flex;
        flex-direction: column;
        border-radius: 15px 15px 0 0;
        width: 91.4%;
        padding: 7px;
        margin: auto;
        align-items: center;
        justify-content: center;
        min-height: 20vh;
        text-align: center;
        font-size: 2rem;
        background-color: rgba(255, 255, 255, 0.85);
      }
    
      .orta {
        display: flexbox;
        width: 90%;
        height: auto;
        margin: auto;
        background-color: rgba(255, 255, 255, 0.85);
        padding: 20px;
      }
      .orta img{
        width: 250px;
        height: auto;
        margin: auto;
        padding: 0 50px;
        border-radius: 100px;
    }
    .orta p{
        padding: 30px;
        font-size: 15px;
        font-weight: bold;
    }
    .text {
        width: 90%;
        margin: auto;
        height: auto;
        font-size: 15px;
        background-color: rgba(255, 255, 255, 0.85);
        font-weight: bold;
        border-radius: 0 0 15px 15px;
        padding: 20px;
        text-align: center; /* Metni ortalamak için */
      }
      
    footer {
      background: linear-gradient(to bottom, rgba(150, 150, 150, 0), rgb(0, 0, 0));
      color: #fff;
      text-align: center;
      font-size: 0.9rem;
      padding: 20px;
    }
    
    html {
     scroll-behavior: smooth;
    }
  }
    
  /* Ekran ölçüsü 320px ve üzeri için ----------------------------------------------------*/
  @media only screen and (max-width: 350px) {
    body {
      width: 100%;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      background-image: url(../images/1.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }
    
    
    header {
      width: 100%;
      display: flex;
      list-style: none;
      justify-content: center;
      padding: 20px 0;
      background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(150, 150, 150, 0));
    }
    
    header .logo img {
      max-width: 100%;
      height: 50px; /* Görsel oranını korur */
    }
    
    
    header nav ul {
      display: block;
      list-style: none;
      justify-content:center;
      font-size: 5px;
    }
    
    header nav ul li {
      font-size: 11px;
      margin:auto;
    }
    
    header nav ul li a {
      font-weight: bold;
      text-decoration: none;
      color: #ffffff;
      font-weight: bold;
    }
    
    header nav ul li a:hover {
      color: rgb(9, 219, 219);
    }
    
    .container h6{
      width:300px;
      text-align: right;
      margin: 0;
    }
    
    .container h6 a{
      text-decoration: none;
      color: rgb(255, 255, 255);
    }
      
      .banner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 80vh;
        text-align: center;
        font-size: 2rem;
        font-family: 'Courier New', Courier, monospace;
    }
    .orta {
      display: flexbox;
      width: 90%;
      height: auto;
      margin: auto;
      background-color: rgba(255, 255, 255, 0.85);
      padding: 20px;
    }
    .orta img{
      width: 200px;
      height: auto;
      margin: auto;
      padding: 0 50px;
      border-radius: 100px;
  }
  .orta p{
      padding: 30px;
      font-size: 15px;
      font-weight: bold;
  }
  .text {
      width: 90%;
      margin: auto;
      height: auto;
      font-size: 15px;
      background-color: rgba(255, 255, 255, 0.85);
      font-weight: bold;
      border-radius: 0 0 15px 15px;
      padding: 20px;
      text-align: center; /* Metni ortalamak için */
    }
    
  footer {
    background: linear-gradient(to bottom, rgba(150, 150, 150, 0), rgb(0, 0, 0));
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    padding: 20px;
  }
    
    footer {
      background: linear-gradient(to bottom, rgba(150, 150, 150, 0), rgb(0, 0, 0));
      color: #fff;
      text-align: center;
      font-size: 0.9rem;
      padding: 20px;
    }
    
    html {
     scroll-behavior: smooth;
    }
  }