body {
  background-color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.container {
  font-family: "Segoe UI Light", "Helvetica Neue", "Segoe UI", "Segoe WP", sans-serif;
  margin: 0 auto;
  text-align: center; /* Center-align the container content */
}

#content h1 {
  font-size: 40px;
  font-weight: 80;
  margin-bottom: 50px;
}

.tile {
  background-color: #65c2ce; /* Light blue background */
  display: inline-block; /* Make tiles line up horizontally */
  width: 350px;
  margin: 10px; /* Add some space around the tiles */
  text-align: center;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s; /* Smooth transition for hover */
}

.tile:hover {
  background-color: #05a8c1; /* Darker blue on hover */
}

.tile img {
  height: 40px; /* Set the height of the logo */
  width: auto; /* Keep image aspect ratio */
  padding: 10px 10px 0px 10px;
}

.tile h3 {
  font-size: 30px;
  font-weight: 100;
  margin: 0;
  padding: 0px 10px 10px 10px;
}
