body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    background: url('img/background.jpg') center/cover no-repeat fixed;
  }
  
  body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.333);
    z-index: -1;
  }
  
  .navbar {
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    z-index: 1;
  }
  
  .navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .navbar li {
    display: inline;
    margin-right: 20px;
  }
  
  .navbar a {
    color: #3ab54a;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .navbar a:hover {
    color: #46db59;
  }
  
  .logo {
    font-size: 24px;
    color: #3ab54a;
  }
  
  .game-box {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #222;
    padding: 20px;
    margin: 20px;
    border-radius: 20px;
    color: white;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .game-box-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
  }
  
  .game-image {
    max-width: 25%;
    max-height: 25%;
    border-radius: 10px;
    margin-right: 20px;
  }
  
  .game-box:nth-child(even) .game-box-container {
    order: 2;
  }
  
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar ul {
      margin-top: 10px;
    }
  
    .navbar li {
      margin-right: 0;
      margin-bottom: 10px;
    }
  
    .game-box {
      margin: 10px;
      border-radius: 10px;
      flex-direction: column;
    }
  
    .logo {
      margin-left: 0;
      margin-bottom: 10px;
    }
  
    .game-box-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .game-image {
      margin-right: 0;
    }
  }