*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.mainContainer {
	background-color: black;
}

.container {
	width: 100%;
	height: 100hv;
	background: rgb(182, 155, 4);
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper {
	width: 80%;
	height: fit-content;
}

.swiper:hover{
	animation-play-state: paused;
}

.swiper-slide img {
	width: 100%;
	height: auto;
}

.swiper-slide .content {
	position: absolute; /* Position the background text */
  bottom: 0; /* At the bottom. Use top:0 to append it to the top */
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.2); /* Black background with 0.5 opacity */
  color: #f1f1f1; /* Grey text */
  width: 100%; /* Full width */
  padding: 20px; /* Some padding */
}

.swiper .swiper-button-prev, .swiper .swiper-button-next{
	color: #fff;
	display: none;
}

.swiper .swiper-pagination-button-active{
	background: #fff;
}

.swiper .text {
	color: #fce16b;
	font-size: 20px;
	padding: 8px 12px;
	position: absolute;
	bottom: 25px;
	width: 100%;
	text-align: right;
  }

  .letsgo {
	  text-align: center;
	  padding: 10px;
	  color: green;
  }

  @media only screen and (max-width: 500px) {
	.swiper-slide .content {
		width: 100%;
	}
  }

  