body {
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: #fff;
  margin: 0;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 2px solid #3fe281;
}

.logo {
  width: 90px;
  transition: 0.3s;
}

.logo:hover {
  transform: scale(1.1) translateY(-5px);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  color: #3fe281;
}

/* HLASOVÁNÍ */
.vote-section {
  text-align: center;
  padding: 60px 20px;
}

.vote-section h2 {
  color: #3fe281;
  font-size: 36px;
  margin-bottom: 40px;
}

/* KONTEJNER */
.vote-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* OKNA */
.vote-box {
  display: block;
  width: 250px;
  background: #1a1a1a;
  border: 2px solid #3fe281;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  overflow: hidden;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* OBRÁZEK */
.vote-box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* TEXT */
.vote-box p {
  background: #5865F2;
    display: inline-block;
    padding: 8px 18px;
    margin: 10px;
    border-radius: 10px;
    /* zaoblení */
    color: white;
    font-weight: bold;
    font-size: 14px;
  
    transition: 0.3s;
}

.vote-box:hover p {
  background: #4752c4;
    transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 20px;
  color: #777;
  border-top: 2px solid #3fe281;
  margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vote-container {
    flex-direction: column;
    align-items: center;
  }
}