body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    border-radius: 30px;
    border: #e40046 solid 10px;
    
  }
  a{
    text-decoration: none;
  }
  #wingo{
    font-family: sans-serif;
    font-size: 30px;
    color:black;
    font-weight:bolder;
    text-decoration: none;
    
  }
  
  .header {
    background-color: #e40046;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    text-align: center;
  }
  #slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden; /* Hide extra images outside the container */
}
  #slider {
    display: flex;
    transition: transform 1s ease; /* Smooth transition for sliding effect */
}
  h1:first-child{
    text-align: center;
    width: 100%;
    font-family:sans-serif;
    /* font-style: oblique; */
    font-size: 120%;
    font-weight: 100;
    color: white;
    text-shadow: 10px 10px 10px  #4313ee;

  }
  
  .logo {
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
  }
  
  .status {
    font-size: 0.9em;
  }
  
  .welcome-section {
    text-align: center;
    padding: 20px;
    background-color: white;
  }
  
  .banner {
    max-width: 100%;
    height: auto;
  }
  
  .welcome-text {
    margin-top: 10px;
    font-size: 1.2em;
  }
  
  .menu {
    display: flex;
    justify-content: space-around;
    background-color: #594242;
    padding: 10px;
  }
  
  .menu-item {
    background-color: #e40046;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .games-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  
  .game {
    background-color: #ffcccc;
    border: 2px solid #e40046;
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    text-align: center;
  }
  
  .footer {
    background-color: #e40046;
    color: white;
    padding: 10px 0;
  }
  
  .bottom-nav {
    position: fixed; /* Fix the menu at the bottom */
    left: 0; /* Align it to the left */
    bottom: 0; /* Stick it to the bottom */
    width: 100%; /* Ensure the menu takes full width */
    background-color: #bf1414; /* Dark background */
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center buttons horizontally */
    padding: 10px 0; /* Vertical padding */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3); /* Add shadow for some depth */
    display: flex;
    justify-content: space-around;
  }
  
  .bottom-nav button {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 1em;
    cursor: pointer;
  }