
/* ------------------------------------------------------------- */

body {
  margin: 0;
  font-family: monospace;
  background-color: #000;
  color: #ccc;
  max-width: 1500px;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  opacity: 0;
  -webkit-text-size-adjust: 100%;
  animation: fadeIn 1.0s ease-in forwards;
}
.hero-image {
  display: flex;
  justify-content: center;
  background-color: #000;
  margin-top: 4rem;
  margin-bottom: 0rem;
}
.hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem 0rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  border-bottom: 1px solid #444;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #000;
}
.logo {
}
.logo img {
  height: auto;
  max-height: 3rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  vertical-align: bottom;
}
.nav {
  display: flex;
  gap: 1.2rem;
  white-space: nowrap;
  font-size: 1rem;
}
.nav a {
  font-family: monospace;
  color: #ccc;
  text-decoration: none;
}
.nav a.active {
  color: #ccc;
  border-bottom: 1px solid #ccc;
}
.nav a:hover {
  border-bottom: 1px solid #ccc;
}
.text-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 9rem;
  padding: 2rem 0rem;
  border-bottom: 1px solid #444;
}
.text-block {
  flex: 1 1 300px;
  max-width: 600px;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.5;
}
.text-block a {
  color: #ccc;
  text-decoration: none;
}
.text-block a:hover {
  text-decoration: underline;
}
.text-block img {
  height: auto;
  max-height: 10.8rem;
  width: auto;
  max-width: 100%;
  margin-top: 2rem;
  margin-bottom: 1.9rem;
  object-fit: contain;
}
.footer {
  padding: 1rem 0rem;
  font-size: 0.9rem;
  text-align: left;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ------------------------------------------------------------- */

@media (max-width: 1020px) {
body {
  margin: 0;
  font-family: monospace;
  background-color: #000;
  color: #ccc;
  max-width: 1500px;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  opacity: 0;
  -webkit-text-size-adjust: 100%;
  animation: fadeIn 1.0s ease-in forwards;
}
.hero-image {
  display: flex;
  justify-content: center;
  background-color: #000;
  margin-top: 2.6rem;
  margin-bottom: 0rem;
}
.hero-image img {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0.7rem 0rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  border-bottom: 1px solid #444;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #000;
}
.logo {
}
.logo img {
  height: auto;
  max-height: 2rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  vertical-align: bottom;
}
.nav {
  display: flex;
  gap: 0.8rem;
  white-space: nowrap;
  font-size: 0.75rem;
}
.nav a {
  font-family: monospace;
  color: #ccc;
  text-decoration: none;
}
.nav a.active {
  color: #ccc;
  border-bottom: 1px solid #ccc;
}
.nav a:hover {
  border-bottom: 1px solid #ccc;
}
.text-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0rem;
  border-bottom: 1px solid #444;
}
.text-block {
  flex: 1 1 1020px;
  max-width: 1020px;
  text-align: justify;
  font-size: 0.75rem;
  line-height: 1.5;
}
.text-block a {
  color: #ccc;
  text-decoration: none;
}
.text-block a:hover {
  text-decoration: underline;
}
.text-block img {
  height: auto;
  max-height: 7rem;
  width: auto;
  max-width: 100%;
  margin-top: 1.3rem;
  margin-bottom: 1.25rem;
  object-fit: contain;
}
.footer {
  padding: 0.7rem 0rem;
  font-size: 0.6rem;
  text-align: left;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
}

/* ------------------------------------------------------------- */
