body {
  background-size: cover;
  font-family: Consolas, monaco, monospace;
  color: white;
  /* background-color: black; */
   background-image: url("https://i.pinimg.com/originals/30/4d/4f/304d4f06f0396519900ddae7e602041d.jpg");
}

footer {
  color: white;
  text-align: center;
  margin-bottom: 0;
  font-family: Consolas, monaco, monospace;
}

.button {
  background-color: none;
  border: none;
  color: white; /* White text */
  padding: 10px 7px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
  font-size: 20px;
  text-decoration: none;
  height: 19px;
  font-family: Consolas, monaco, monospace;
}

.button:not(:last-child) {
  border-right: none; /* Prevent double borders */
}

/* Add a background color on hover */
.button:hover {
  background-color: #7b44f2;
  color: white;
}

.slider-container {
 justify-content: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.slider {
  flex: 0 0 calc(25% - 20px); /* Adjust the width as needed */
  overflow: hidden;
  height: 500px;
  position: relative;
  margin-right: 20px; /* Add margin to create space between sliders */
}

.slider img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

.slider img:last-child {
  margin-right: 0; /* Remove margin from last image */
}

.prev-btn,
.next-btn {
  margin-top: 10px;
}

main {
  text-align: center; /* Center align main content */
}
