body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2e2e2e;
    margin: 0;
    padding: 20px;
    color: #fff;
}

nav {
    background-color: #3498db;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    position: fixed;
    top: 0;
    right: 0;
  
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #2c3e50;
}

h1 {
    text-align: center;
    color: #3498db;
}


.game-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.game-box {
    width: 200px;
    height: 250px;
    border: 2px solid #3498db;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
    background-color: #2c3e50;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.game-box:hover {
    transform: scale(1.1);
}

.game-box a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.game-icon {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-bottom: 2px solid #3498db;
}

.game-text {
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
    background-color: #3498db;
    color: #fff;
    border-top: 2px solid #2c3e50;
}


#uv-form {
    text-align: center;
    margin-bottom: 20px;
}

#uv-address {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 2px solid #3498db;
    border-radius: 8px;
    background-color: #2c3e50;
    color: #fff;
}


@media (max-width: 768px) {
    .game-box {
        width: 100%;
    }
}
#footer {
  position: fixed;
  left: 0;
  bottom: 0;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  height:15px;
  background-color: #231f1f;
  padding-top: 7.5px;
  padding-bottom: 10px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

#footer p {
  margin: 0;
}

  .time {
    background-color: #3498db;
    padding: 8px;
    border-radius: 100px;
    color: #fff;
    font-size: 16px; 
    margin: 1px;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10vw;
  align-items: center;
  text-align: center;
}

.container h1 {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--third-color));
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  color: transparent;
  font-size: 68px;
}

.photo-gallery a {
  display: inline-block;
  overflow: hidden;
  transition: transform 0.3s ease-out;
}

.photo-gallery a:hover {
  transform: scale(1.1);
}

html {
  scroll-behavior: smooth;
}

photo-gallery {
  display: flex; 
}

.photo-gallery img {
  width: 25%; 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section {
  padding: 2rem;
  background-color: #262626;
  color: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

section p {
  font-size: 1.4rem;
  color: #e0e0e0;
}

/* Style for the search bar */
#gameSearch {
  width: 80%; /* Adjust the width as needed */
  max-width: 400px; /* Set a maximum width to limit its size */
  padding: 10px;
  box-sizing: border-box;
  border: 2px solid #3498db;
  border-radius: 8px;
  background-color: #2c3e50;
  color: #fff;
  margin: 0 auto; /* Center the search bar horizontally */
  display: block;
  margin-bottom: 20px; /* Add margin to separate it from other elements */
}

/* Style for the game boxes container */
.game-container {
  display: flex;
  flex-wrap: wrap;
}



