/* Common layout: header + menu (applies to all pages) */

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.header-0 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background-color: gold;
  display: flex;
  align-items: center;
  z-index: 1000;
  box-sizing: border-box;
  padding: 5px;
}

.header-left-0 {
  width: 14.3%; /* about 1/7 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-left-0 img {
  width: 90%;
  height: auto;
  object-fit: contain;
}

.header-right-0 {
  width: 85.7%;
  text-align: center;
  line-height: 1.5;
}

.header-right-0 h1 {
  margin: 0;
  font-size: 1.3em;
}

.header-right-0 h2 {
  margin: 0;
  font-size: 1.5em;
  color: blue;
}

.header-right-0 h3 {
  margin: 0;
  font-size: 1em;
}

.menu-0 {
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  background-color: teal;
  z-index: 999;
}

.menu-0 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.menu-0 li {
  margin: 0;
}

.menu-0 a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
}

.menu-0 a:hover,
.menu-0 a.active-0 {
  background-color: #004d4d;
}

.red-0 {
  color: blue;
}
