body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #f9f9f9;
}

h1 {
  text-align: center;
  color: #1565C0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #BBDEFB;
  padding: 10px;
  border-bottom: 2px solid #0D47A1;
  margin-bottom: 20px;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-left img {
  margin-right: 10px;
  height: 50px;
}

.header-right {
  text-align: right;
  font-size: 0.8em;
  color: #0D47A1;
}

.link-container {
  display: flex;
  flex-direction: column; /* Make links stack vertically */
  align-items: center;     /* Center the stacked buttons */
  gap: 10px;
  margin-top: 30px;
}

.link-button {
  background-color: #1976D2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1em;
  text-align: center;
  width: 220px;
  display: inline-block;
}

.link-button:hover {
  background-color: #1565C0;
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #1976D2;
}
