﻿/* Reset some default styles */
body, h1, p, img {
  margin: 0;
  padding: 0;
}

/* Set background color and center the content */
body {
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}

/* Set styles for the game info section */
.game-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

/* Set styles for the game logo */
.logo img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

/* Set styles for the game title */
.title h1 {
  font-size: 24px;
  margin-bottom: 5px;
}

.title p {
  font-size: 12px;
  color: gray;
}

/* Set styles for the game description section */
.game-description {
  margin-top: 20px;
}

/* Set styles for the buttons */
.buttons {
  margin-top: 20px;
}

.button {
  display: inline-block;
  padding: 5px 10px;
  background-color: green;
  color: white;
  text-decoration: none;
  border-radius: 3px;
  margin-right: 10px;
}

.button:last-child {
  margin-right: 0;
}

/* Set hover styles for the buttons */
.button:hover {
  background-color: darkgreen;
}
