*{ margin: 0;padding: 0;box-sizing: border-box; }
body{
margin: 0;
font-family: "Book Antiqua";
font-family: "Times New Roman", Times, serif;
background-image: linear-gradient(to right,#E6F2F9,white,white,white,white,#E6F2F9);
 /*background-image: url('../img/bg.jpg');
 background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #FDFEFE; */
}
.card img{
   transition:all 1s linear;
   animation: all; 3s infinite alternate;
   opacity: 0.9;
}
.card img:hover{
  transform: scale(1.2);
  opacity: 1;
}   
.cont{
  text-align: center;
  position: absolute;
  top:40%;
  left:0%;
  transition: translate(-50%,-50%);
  width: 100%;
}
.cont span{
  text-transform: uppercase;
  width: 20%;
}
.text1{
  font-size: 30px;
  font-weight:400;
  width:100%;
  color: #0080ff;
  letter-spacing: 4px;
  margin-bottom: 20px;
  position: relative;
  animation: text 3s infinite alternate;
}
@keyframes text{
  0%{
    color: red;
    margin-bottom: -40px;
  }
  30%{
     color: green;
    letter-spacing: 4px;
    margin-bottom: -40px;
  }
  85%{
    color: gray;
    letter-spacing: 8px;
    margin-bottom: -40px;
  }
}

 .w3r-triangle {
  width: 0;
  height: 0;
  border-top: 40px solid #fff;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
}


 .slideshow-container { 
    position: relative; 
    width: 100%; /* Adjust width as needed */ 
    height: 90%;
    /* max-width: 600px; Max width for the slideshow */ 
    margin: 0px; 
    overflow: hidden; 
  } 

  #slideshow { 
    width: 100%; 
    height: 90%; /* Maintain aspect ratio */ 
    transition: opacity 7s ease; /* Smooth transition */ 
  } 