body {
  margin: 0px;
  margin-top: 0px;
  padding: 0;
  font-family: Roboto;
  background-color: rgba(25,24,24,1.00);
}



a:link {
	color: black;
	text-decoration: none;
}
	
	
	a:visited {
	color: black;
    text-decoration: none;
}

a:hover {
  text-decoration: underline;
}	



.main {
  width: 80%;
  margin: 0 auto;
  padding: 0;
  background-color: red;
}

.main_body {
  display: grid;
  grid-template-columns: 1fr;
}

.debut_package {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 20px;
  row-gap: 20px;
}

.main_body_text {
  margin: 20px 30px;
  margin-bottom: 100px;
  color:white;
}

.random_images {
  margin: 10px 20px;
}

.banner {
  display: block;
  padding: 10;
  background-image: url('images/banner6.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
}

.banner img {
  animation: fadeInDown 1s;
  margin-bottom: 50px;
  margin-top: 50px;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.navbar {
  margin-top: 0;
  margin-bottom: 70px;
  left: 0;
  width: 100%;
  display: block;
  color: black;
  background-color: rgba(255,188,20,1.00);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.navbar ul {
  margin: 0px auto;
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 0px;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  display: block;
}

.navbar ul li ul {
  padding: 0;
  position: absolute;
  left: 0;
  display: block;
  display: none;
  visibility: hidden;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: white;
  width: 250px;
}

.navbar ul li:hover ul {
  display:  block;
  opacity: 1;
  visibility: visible;
}

.navbar a {
  color: rgba(255,188,20,1.00);
  padding: 10px;
  display: block;
}

.navbar a:hover {
  background-color: hsla(0, 0%, 17%, 1.00) ;
  color: rgba(255,188,20,1.00);
}

.footer{
  background-color: red;
  margin-top: 50px;
}

.random_images a {
  position: relative;
  display: inline-block;
}

.random_images a::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.5s;
}

.random_images a:hover::after {
  opacity: 1;
}

.random_images img {
  animation: fadeInTop 1s;
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(calc(-50% - 100px));
  }
  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}

.footer {
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
  background-color: rgba(255,188,20,1.00);
}



.slideshow {
  position: relative;
  width: 400px;
  height: 300px;
  margin: 40px auto;
  
	border: none;
	
}

.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  object-fit: none;
  opacity: 0;
  animation: slideshow 15s infinite;
 border-radius: 20px;
}

.slideshow img:nth-child(1) {
  animation-delay: 0s;
  opacity: 1;
}

.slideshow img:nth-child(2) {
  animation-delay: 3s;
}

.slideshow img:nth-child(3) {
  animation-delay: 6s;
}

.slideshow img:nth-child(4) {
  animation-delay: 9s;
}

.slideshow img:nth-child(5) {
  animation-delay: 12s;
}

@keyframes slideshow {
  0% {
    opacity: 1;
  }
  16.67% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


.mrt {
  display: flex;
  justify-content: center;
}

.mrt img {
  max-width: 100%;
  height: auto;
}


.button {
  background-color: rgba(205,106,20,1.00);
  border: none;
  border-radius:10px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}


.button:hover {
  background-color: black;
  border: none;
  border-radius:10px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}



h1 {
  animation: fadeInRight 1s;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}