.hero {
    background-image: url('images/arcade-game-machines-store.jpg'); /* Replace with your hero image */
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 2.1em;
    margin-bottom: 1.5em;
}
/* style for slide show */
.slideshow-container-auto {
    max-width: 600px; /* Adjust as needed */
    max-height: 50%;
    position: relative;
    margin: 25px;
  }
  
  .slide-auto {
    display: none;
  }
  
  .slide-auto img {
    width: 70%;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 3s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  @media screen and (max-width: 868px){
    .slide-auto img {
        width: 100%;
        height: 100%;
        align-items: center;
      }
  }
/* Style for featured categories */
.featured-categories {
    padding: 30px 0;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
    padding: 0 10px;
}

.category-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
    border-color: rgb(243, 47, 171);
    border-style: solid;
    margin: 20px;
    background-color: rgb(243, 47, 171);
    color: white;
}

.category-item img {
    width: 100%;
    height: 250px;
    display: block;
    border-bottom: 1px solid #eee;
}

.category-item h3 {
    margin-top: 10px;
    font-size: 1.1em;
}

.call-to-action {
    background-color: #f8f8f8;
    padding: 20px 10px;
    text-align: center;
}

.call-to-action h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.call-to-action p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
}
