body {
  background-color: #121212; 
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

#searchInput {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 8px 12px;
  font-size: 16px;
  width: 200px;
  outline: none;
  margin-bottom: 20px;
}

#searchInput::placeholder {
  color: white;
}

#searchInput:focus {
  border-color: #888;
}

#buttonSection {
  background-color: rgba(23, 23, 23, 0.9); 
  padding: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

#buttonContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

#buttonContainer a {
  text-decoration: none;
  margin: 5px;
}

