@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;1,500;1,600&display=swap');
/*Complete page*/

*{
  margin: 0;
  padding: 0;
  
  box-sizing: border-box; 
  font-family: 'Poppins',sans-serif;

}
/*-----------------------------------------------------------------------*/

body{
  overflow-y:auto;overflow-x: auto;

 

}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display:block;
}

/* Hide scrollbar for IE, Edge and Firefox */
body{
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width:auto;  /* Firefox */
}
header{
  position:absolute;
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  top: 0;
  width: 100%;
  right: 0;
  padding: 5px;
  z-index: 1000;
  color:black;
}
header ul li a:hover
{
  border: 2px solid white;
  border-radius: 20px;
  background:white;
  color:black;
}
.menuitems {
 display: flex;
 justify-content: space-between;
   color: white;
}
.menuitems li{
  margin: 2px 30px;

  padding: 10px;
 list-style: none; 
}
a{
  text-decoration: none; 
  padding: 6px 15px;
   color:white;
}
.slideshow-container {
  position:absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  margin: 0;
}
.slides{
  position: absolute;
   height: 100vh;
  width: 100%;
}
.slides img{
  height: 100vh;
  width: 100vw;
}
.slides h2{
  position: absolute;
  top: 70%;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

 .container{
  display: flex;
  flex-direction:column; 

  scroll-behavior: smooth;
}

#home,#destinations,#contact{
min-height:100vh;
min-width: 100vw;
scroll-behavior: smooth;
}
#home h2{
  color:white;
  z-index: 100;
  font-weight: 800;
  top: 10px;
  position: absolute;
  left: 10px;
}
#destinations h2{ 
color: black;
padding: 10px 20px;


}
#destinations{
    margin-top: 50px;
 
}
#contact{
  
  width:auto;
 color: white;
 
  
}
.cards{
  position:relative;
  display: flex;
  flex-direction:row;
  justify-content:space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
.card{
  display: flex;
  position: relative;
  border-radius: 5px;
    box-shadow: -4px 7px 5px 1px rgba(176,164,176,1);
    transition: all .3s ease-in-out;
}
.image{
  display: block;
  height:350px;
  width: 350px;
   border-radius: 8px;
}
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 40px;
  color: black;
  background: white;
  transition: .5s ease;
}
.card:hover  .overlay {
  height: 30%;
}
.card-title{
  font-weight: 400;
  font-size: 20px;
  color: black;
  background: white;
  padding:4px 10px;
}
.card-content{
   padding:4px 10px;
}
  













