body{
    margin: 0;
    padding: 0;
    background-color: #4c4c4c;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

/* Add a black background color to the top navigation */
.topnav {
    margin: 10px;
    border-radius: 10px;
    background-color: #333;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 999;
    position: absolute;
    width:max-content;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add an active class to highlight the current page */
  .topnav a.active {
    background-color: #2b4eff;
    color: white;
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-width: 600px) {
    .topnav{
        display: block;
    }
    .topnav.responsive {position: absolute;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }

#hero{
    background: #9999ff;
    text-align: center;
    padding: 10vh;
    height: 7vh;
}

#featured-games{
    background: #3a3a3a;
    background-repeat:repeat;
    padding: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#footer{
    padding:10vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

#footer > div > a{
    width: 30px;  /* Adjust the size as needed */
    height: 30px; /* Adjust the size as needed */
    background-color: #979797; /* Change to your preferred color */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-align: center;
}

#footer > div > a:hover {
    opacity: 80%;
}

.games-col{
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.game-card img {
    width: 300px; /* Adjust size as needed */
    height: auto;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform-style: preserve-3d;
}

.game-card  img:hover {
    transform: rotateY(0deg) rotateX(-5deg) translateZ(30px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.slider-container {
    position: relative;
    height: 95vh;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
.slider {
    display: flex;
    transition: transform 0.5s ease;
    
}
.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 2rem;
    color: white;
    text-align: center;
}

.slide1 { background-color: #9999ff; }
.slide2 { background-color: #9999ff; }
.slide3 { background-color: #9999ff; }