body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, blue, purple);
  flex-direction: column;
  
  
}

h1 {
  color: white;
  font-family: "Arial";
  font-size: 55px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.gamebutton {

background-color: white
  color: purple;
  text-align: center;
  font-size: 25px;
  border-radius: 25px;
   align-items: center;
   justify-content: space-evenly;
    cursor: pointer;

  
}

.gamebutton img {
  width: 20px;
  height: 20px;
  border-radius: 25px;
  text-align: center;
}


.gamebutton:hover{
  
                    transform:scale(1.1)
                 
                 }

button {background-color: white; color: violet;}

/* Style the Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 15px 30px;
  color: blue; /* Set the color to violet for the text */
  font-family: "Arial";
}

/* Logo */
.top-bar .logo a {
  font-size: 24px;
  font-weight: bold;
  color: blue; /* Use violet color here for consistency */
  text-decoration: none; /* Removes underline from link */
  font-family: "Arial";
}

.top-bar .logo a:hover {
  text-decoration: underline;
}

/* Navigation Links */
.nav-links {
  display: flex;
}

.nav-links a {
  margin-left: 20px;
  font-size: 18px;
  color: blue; /* Use violet color for navigation links */
  text-decoration: none;
}

.nav-links a:hover {
  color: #ff9800; /* Change color on hover */
}

/* Content area */
.content {
  padding: 50px;
  text-align: center;
}

.content h1 {
  font-size: 48px;
  color: #333;
}

.content p {
  font-size: 20px;
  color: #666;
}
