* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    height: 100%;
    width: 100%;
    background-color: #2c3930 ;
    background-size: cover;           /* Görsel ekranı tamamen kaplasın */
    background-repeat: no-repeat;     /* Görsel tekrar etmesin */
    background-position: center;      /* Ortalansın */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  
  .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
  
  .logo {
    width: 700px;           /* İstenen genişlik */
    max-width: 100%;        /* Ekrandan büyükse otomatik sığdır */
    height: auto;
    margin-bottom: 5px;
  }
  
  .info {
    color: white;
    font-size: 16px;
    max-width: 90%;
  }
  
  @media (max-width: 400px) {
    .info {
      font-size: 14px;
    }
  }
  