body {
  background-color: #111;
  color: #eee;
  font-family: 'Creepster', sans-serif;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 48px;
  color: #ff4444;
  margin-bottom: 10px;
}

#carousel {
  margin: 20px auto;
  width: 500px;
  height: 300px;
  border: 4px solid #ff4444;
  background-color: #000;
  overflow: hidden;
  position: relative;
}

#carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}

button {
  padding: 10px 20px;
  margin: 10px;
  font-size: 16px;
  cursor: pointer;
  background-color: #222;
  color: #fff;
  border: 2px solid #ff4444;
}
