/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
  background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6, .logo {
  font-family: 'Orbitron', sans-serif;
}

/* Navbar styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #004080;
  padding: 1rem 2rem;
  color: #fff;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #a0c4ff;
}

/* Main content styling */
.content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.image-placeholder img {
  width: 1200px;
  height: 800px;
  object-fit: cover;
  border: 2px solid #ccc;
  border-radius: 8px;
}

.game-blurb {
  width: 1200px;
  margin: 3rem auto;
  padding: 1rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  font-size: 1.1rem;
  line-height: 1.8;
}

.game-blurb h1,
.game-blurb h2 {
  color: #004080;
  margin-top: 2rem;
}

.game-blurb h1 {
  font-size: 2rem;
  text-align: center;
}

.game-blurb blockquote {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f0f8ff;
  border-left: 5px solid #004080;
  font-style: italic;
  font-size: 1.2rem;
}


.start-game-container {
  text-align: center;
  margin-top: 2rem;
}

.start-game-button {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  background-color: #004080;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.start-game-button:hover {
  background-color: #0066cc;
  transform: scale(1.05);
}



.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
