* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

/* Style the header */
.header {
  position: relative;
  background-color: #f1f1f1;
  padding: 20px;
  text-align: center;
}

/* Style the header image */
.header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

/* Style the header text */
.header h1 {
  position: relative;
  color: white;
  text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}

.header p {
  position: relative;
  color: white;
  text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}

/* Style the top navigation bar */
.navbar {
  display: flex;
  align-items: center;
  background-color: #333;
}

/* Style the navigation bar links */
.navbar a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the main content */
.main {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

/* Style the game library section */
.library {
  background-color: white;
  padding: 20px;
}

/* Style the library games */
.game {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* Style the game image */
.game img {
  border-radius: 10%;
  width: 200px;
}

/* Style the game name and bio */
.game-info {
  margin-left: 20px;
}

.game-name {
  font-weight: bold;
}

.game-system {
  font-style: italic;
}

.game-description {
  font-style: normal;
}

/* Style the team section */
.team {
  background-color: white;
  padding: 20px;
}

/* Style the team members */
.member {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* Style the member image */
.member img {
  border-radius: 50%;
  width: 200px;
  height: 100px;
}

/* Style the member name and bio */
.member-info {
  margin-left: 20px;
}

.member-name {
  font-weight: bold;
}

.member-bio {
  font-style: italic;
}

/* Style the schedule section */
.schedule {
  background-color: white;
  padding: 20px;
}

/* Style the schedule title */
.schedule-title {
  font-weight: bold;
}

/* Style the schedule table */
.schedule-table {
  border-collapse: collapse;
}

.schedule-table td, .schedule-table th {
  border: 1px solid #ddd;
  padding: 10px;
}

.schedule-table tr:nth-child(even) {
  background-color: #f2f2f2;
}
