/* GENERAL */

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
}

.main-logo {
  width: 407px;
  max-width: 90vw;
  height: auto;
}

/* INDEX PAGE */

body.home {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.home img {
  width: 407px;
  max-width: 90vw;
  height: auto;
}

/* WHO PAGE */

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6vh;
  padding: 6vh 0;
}

/* make section width match image */
.section {
  width: min(70vw, 400px);
}

/* image fills section width */
.section img {
  width: 100%;
  height: auto;
  display: block;
}

/* label aligned to right edge of image */
.label {
  margin-top: 8px;
  font-size: 28px;
  font-family: "Courier New", Courier, monospace;
  text-align: right;
}

/* icons */

.icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.icons img {
  width: 45px;
  height: auto;
}

/* menu */

.menu {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu a {
  text-decoration: none;
  background: #2a74a6;
  color: white;
  padding: 8px 18px;
  font-family: monospace;
}

.menu a.active {
  background: #d33;
}

/* footer */

.footer-logo {
  margin-top: 60px;
}

.footer-logo img {
  width: 80px;
}
