
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');


*{
    font-family: 'Roboto Condensed', sans-serif;
}

.bgimg img{
    object-fit: fill;
}


/* smooth scroll  */
html{
    scroll-behavior: smooth;
}

pe-wrap {
    font-size: 50px;
    padding: 20px;
  }
  
.typed-cursor{
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

/* .splide__slide img {
    width: 30%;
    height: auto;
  } */

  /* @media (min-width: 600px) {
    .splide__slide img {
        width: 500px;
        height: auto;
      }
   
} */

/* Style for the scroll to top button */
.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
    background-color: #ff0019; /* Change this to your desired button color */
    color: white;
    border: none;
    border-radius: 5%;
    padding: 10px;
    font-size: 16px;
  }
  
  /* Show the button when user scrolls down */
  body.scrolled .scroll-to-top {
    display: block;
  }
  
  /* Optional: Add a hover effect */
  .scroll-to-top:hover {
    background-color: #000000; /* Change this to your desired hover color */
  }
  