body {
  background-color: #dcdcdc;
  background-image: url("BG/BG_SPRING.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: cover;

  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* -------------------- HEADER -------------------- */

#header {
  width: 900px;

  margin: 18px auto 0 auto;

  background: #ffffff;
  border: 1px solid #aaaaaa;

  padding: 12px 14px 10px 14px;
}

#title {
  font-size: 28px;
  font-weight: bold;

  margin-bottom: 4px;
}

#description {
  font-size: 12px;
  color: #555555;

  margin-bottom: 10px;

  line-height: 1.4;
}

/* -------------------- NAVIGATION -------------------- */

#nav {
  font-size: 12px;

  border-top: 1px solid #dddddd;

  padding-top: 6px;
}

#nav a {
  color: #0000ee;
  text-decoration: none;
}

#nav a:visited {
  color: #551a8b;
}

#nav a:hover {
  text-decoration: underline;
}

/* -------------------- MAIN CONTENT -------------------- */

#content {
  background: #ffffff;
  border: 1px solid #aaaaaa;

  width: 900px;

  margin: 10px auto 18px auto;

  padding: 14px;

  line-height: 1.5;
}

h1 {
  font-size: 24px;
  border-bottom: 1px solid #cccccc;
  margin-top: 0;
}

h2 {
  font-size: 19px;
  border-bottom: 1px solid #dddddd;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

/* -------------------- INFOBOX -------------------- */

.infobox {
  float: right;

  width: 260px;

  margin-left: 16px;
  margin-bottom: 12px;

  border: 1px solid #999999;

  background: #f7f7f7;

  font-size: 12px;
}

.infobox_title {
  background: #e6eef8;

  border-bottom: 1px solid #999999;

  text-align: center;

  font-size: 18px;
  font-weight: bold;

  padding: 6px;
}

.infobox img {
  display: block;

  margin: 8px auto;

  border: 1px solid #aaaaaa;
}

.infobox_caption {
  text-align: center;

  font-size: 11px;
  color: #555555;

  padding: 0 6px 8px 6px;
}

.infobox table {
  width: 100%;
  border-collapse: collapse;
}

.infobox th {
  width: 35%;

  background: #eeeeee;

  border-top: 1px solid #cccccc;

  padding: 5px;

  text-align: left;
  vertical-align: top;
}

.infobox td {
  border-top: 1px solid #cccccc;

  padding: 5px;

  vertical-align: top;
}

/* -------------------- FOOTER -------------------- */

.footer {
  border-top: 1px solid #cccccc;

  margin-top: 25px;
  padding-top: 8px;

  font-size: 11px;
  color: #555555;
}

/* -------------------- UTIL -------------------- */

.clear {
  clear: both;
}

/* -------------------- MOBILE -------------------- */

@media screen and (max-width: 980px) {

  #header,
  #content {
    width: auto;

    margin-left: 10px;
    margin-right: 10px;
  }

  #title {
    font-size: 22px;
  }

  #description {
    font-size: 11px;
  }

  #nav {
    line-height: 1.8;
  }

  iframe {
    width: 100%;
    height: auto;

    aspect-ratio: 4 / 3;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .infobox {
    float: none;

    width: auto;

    margin-left: 0;
  }
}