body {
    background-image: url(Channel0newsbanner.jpg);
  }

.background {
    width: 90%;
    background-color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    opacity: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

h2, p {
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.center {
    text-align: center;
}

.center-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

hr {
    height: 8px;
    border-color: #00fffbff;
    background-color: #00fffbff;
    width: 75%;
}

.bar {
    text-align: center
}

.button {
    display: inline-block;
    padding: 10px;
    border: 2px solid #000;
    border-radius: 8;
    background-color: #00fffbff;
    font-family: 'Segoe UI', sans-serif;
    text-decoration: none;
    font-weight: bold;
}

a:visited {
    color: #000
}

a:hover {
    color: #000
}

a:active {
    color: #000
}

.navbar {
    overflow: hidden;
    background-color: #333;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.nav-decor {
    color: #ddd;
}

h1 {
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .game-box {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 300px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
  }
  
  .game-box:hover {
    transform: scale(1.03);
  }
  
  .game-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .game-box h2 {
    margin: 10px 0 5px;
    font-size: 1.2em;
  }
  
  .game-box p {
    color: #555;
  }

  .game-box h2 a {
    text-decoration: none;
    color: #333;
  }
  
  .game-box h2 a:hover {
    color: #007bff;
  }