body, html {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  
  .container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: black; /* Geri kalan alanın siyah olmasını sağlar */
  }
  
  .container h1 {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-40%, -50%);
    max-width: 100%;
    max-height: 100%;
    color: white;
    text-align: center;
  }