body {
  padding-top: 70px; /* Zachowaj odstęp na górze dla stałego nagłówka */
  background-color: #000E12;
}
.section {
  padding: 50px 0; /* Dodaj wewnętrzny odstęp dla każdej sekcji */
}

#witamy {
    font-family: "Times New Roman", Times, serif;
    font-size: 32pt;
}

#gramy {
    color: #FFF7DC;
}

#opis {
    font-family: "Times New Roman", Times, serif;
    font-size: 14pt;
}
#stopka {
    padding-top: 10px;
    padding-bottom: 10px;
}
canvas {
      max-width: 100%;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Możesz dostosować to, jak chcesz rozmieścić filmy */
}

.video-container .embed-responsive {
  width: 48%; /* Ustaw szerokość każdego filmu */
}

.tytulpiosenki {
    font-family: "Times New Roman";
    font-size: 14pt;
}
#javascriptEnabled {
    display: none;
}

#javascriptDisabled {
    display: block;
}
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 250px;
    padding: 15px 20px;
    background-color: #333;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    font-family: sans-serif;
    display: none;
  }

  .toast.show {
    opacity: 1;
    transform: translateY(0);
    display: block;
  }

  .toast.success {
    background-color: #28a745;
  }

  .toast.error {
    background-color: #dc3545;
  }