img {
    width: 305px;

}

/*
  body {
    transition: background-color 5s ease;
    zoom: 1.25;

    background-color: #000000; 
    color: white; 
    font-family: Arial, sans-serif;
    background-image: radial-gradient(rgb(61, 6, 103) 5%, transparent 10%);
    background-size: 50px 50px;  

    justify-content: center;
    align-items: center;

  }
 .container {
          display: flex;
          flex-direction: column;
          align-items: center; 
          gap: 10px; 
      }
 .naglowek {
      display: flex;
      flex-direction: column; 
      align-items: center; 
      gap: 10px; 
  }
 
  #input {
    width: 400px;
    max-width: 100%;
    height: 100px;

    font-size: 10px; 
    padding: 5px; 
  }

  @media (max-width: 600px) {
    #input {      
      font-size: 3rem;
      width: 400px;
      max-width: 100%;
    }
  }
  */

  body {
    transition: background-color 5s ease;
    margin: 0;
    padding: 0;

    background-color: #000000;
    color: white;
    font-family: Arial, sans-serif;
    background-image: radial-gradient(rgb(61, 6, 103) 5%, transparent 10%);
    background-size: 50px 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    box-sizing: border-box;
}

/* Kontenery ogólne */
.container,
.naglowek {
    display:block;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    width: 70%;    
}

/* Pole tekstowe */
#input {
    width: 100%;

    height: 100px;

    font-size: 1rem;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    outline: none;
}

/* Styl dla urządzeń mobilnych */
@media (max-width: 1100px) {
    body {
        background-size: 30px 30px; /* mniejsze tło na telefonach */
        font-size: 16px;
        padding: 10px;
    }

    #input {
        width: 95vw;  
        font-size: 2.5rem;
        height: auto;
        min-height: 120px;
    }

    .container{
      width: 95vw;
      padding: 10px;
      gap: 8px;
    }
    .naglowek {        
        
    }
}