
.main { 
  margin-top: 1px;
}

#top {
  background-color: rgba(80, 80, 80, 0.7);
  color: #fff;
  padding: 10px;
  width: 100%;
  float: left;
}

#top a {
  margin-left: 5px;
  color: blue;
}

#top button {
  float: right;
}

#container {
  display: block;
  position: relative;
  height: 50%;
  width: 50%; /* Poprawka: Dodanie średnika po wartości */
  background-color: rgba(80, 80, 80, 0.6);
  border: none;
  border-radius: 10px;
}

.cookies {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  border: none;
  background-color: rgba(80, 80, 80, 0.6);
}

.separation {
margin-top: 10px
}

#tag  {
  margin-left: 30px;
}

/* Dodajemy style dla body, aby zapewnić pełną wysokość strony */
html, body {
  font-family: Arial, sans-serif;
}

.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Ustawienie pełnej wysokości ekranu */
}

.loader {
  border: 5px solid #f3f3f3; /* Light grey */
  border-top: 5px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


  

button {
  border: none;
  border-radius: 10px;
  background-color: rgb(105, 110, 240);
  color: white;
  padding: 10px 20px; /* Poprawka: Zmiana przecinka na spację */
  cursor: pointer;
  transition: all 1s ease;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Poprawka: Dodanie wartości offsetu i rozwielitości */
}

button:hover {
  background-color: rgb(90, 90, 90);
  box-shadow: 0 0 5px rgba(80, 80, 80, 0.5); /* Poprawka: Dodanie wartości offsetu i rozwielitości */
}

a {
  color: rgb(145, 145, 145);
  text-decoration: none;
  transition: all 1s ease;
  cursor: pointer;
}

a:hover {
  color: rgb(255, 0, 0);
  text-decoration: underline;
}

input {
  border: none;
  border-radius: 10px;
  background-color: rgb(90, 90, 90);
  color: white;
  transition: all 1s ease;
  cursor: pointer;
  padding: 10px;
}

input:hover {
  border: none; /* Poprawka: Usunięcie zmiany koloru obramowania na hover */
}
