@font-face {
  font-family: "Noto";
  src: url("fonts/Noto_Sans/static/NotoSans-Regular.ttf");
}

@font-face {
  font-family: "Noto-Condensed";
  src: url("fonts/Noto_Sans/static/NotoSans_SemiCondensed-Regular.ttf");
}

@font-face {
  font-family: "Noto-Light";
  src: url("fonts/Noto_Sans/static/NotoSans-Light.ttf");
}

html {
  margin: 0;
  height: 100%;
}

body {
  font-family: "Noto";

  margin: 0;
  height: 100%;

  display: flex;
  flex-flow: column;
  align-content: center;
}

a {
  color: #13547a;
}

a:hover {
  color: #1d7cb3;
}

a:visited {
  color: #13547a;
}

.main-nav {
  z-index: 5;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;

  position: fixed;

  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

@media (width <= 600px) {
  .main-nav {
    position: absolute;
  }
}

.main-nav-list {
  list-style: none;

  border-radius: 8px;
  background-color: rgb(245, 245, 245);

  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 32px;
  padding-right: 32px;

  width: calc(100% - 96px);
  max-width: 800px;

  align-items: center;
  align-content: center;
  justify-content: flex-start;

  display: flex;
  flex-flow: row;
  gap: 16px;

  filter: drop-shadow(1px 1px 2px rgb(65, 65, 65, 0.5));
}

.main-nav-list a {
  color: black;
  text-decoration: none;
  font-size: 18px;
}

.main-nav-list a:hover {
  text-decoration: underline;
}

.main-nav-home {
  color: black;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;

  display: flex;
  flex-direction: row;
  align-items: center;

  gap: 8px;
}

.main-nav-logo {
  width: 18px;
  height: 18px;
}

.main-nav .right {
  margin-left: auto;
  height: 24px;
}

.main-nav .right .icon {
  font-size: 24px;
  height: 24px;
}

.main-nav .icon img {
  height: 24px;
}

.main-header {
  padding-top: 96px;
  padding-bottom: 64px;

  background: linear-gradient(35deg, #2291ba, #22b190, #13547a, #80d0c7);
  background-size: 400% 400%;
  animation: gradient 30s ease infinite;

  color: white;

  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.main-header .content {
  width: 100%;
  max-width: 800px;

  text-align: center;
}

.main-header h1 {
  color: white;
  font-size: 36px;
  font-family: "Noto";

  text-shadow: 1px 1px 2px rgba(65, 65, 65, 0.5);

  margin: 24px;
  margin-bottom: 48px;
}

.main-header h2 {
  color: white;
  font-family: "Noto-Light";

  margin: 24px;
}

.main-header h3 {
  color: white;
  font-family: "Noto-Light";

  margin: 24px;
}

.content-image {
  filter: invert(15%) sepia(2%) saturate(0%) hue-rotate(70deg) brightness(100%)
    contrast(92%);
}

.page-content {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  align-content: center;

  padding-bottom: 32px;

  color: #2d2d2d;
}

.wrap {
  flex-wrap: wrap;
}

.wrap-reverse {
  flex-wrap: wrap-reverse;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: space-around;

  max-width: 800px;
  gap: 48px;

  padding: 32px;
}

.row img {
  max-width: 325px;
  max-height: 325px;
}

.col {
  display: flex;
  flex-flow: column;
  align-items: center;
  align-content: center;
}

.section {
  max-width: 425px;
}

.col img {
  max-width: 325px;
  max-height: 325px;
}

.text-center {
  text-align: center;
}

.footer {
  width: calc(100% - 64px);
  min-height: 300px;

  padding: 32px;

  background: linear-gradient(35deg, #2291ba, #22b190, #13547a, #80d0c7);
  background-size: 400% 400%;
  animation: gradient 30s ease infinite;

  color: white;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content {
  width: 100%;
  max-width: 800px;

  display: flex;
  flex-direction: row;
  justify-content: space-between;

  text-shadow: 1px 1px 2px rgb(65, 65, 65, 0.8);
}

.footer-row {
  display: flex;
  flex-flow: row;
  align-items: center;
  align-content: center;
  justify-content: center;

  gap: 8px;

  padding-bottom: 24px;
}

.footer-row img.icon {
  height: 21px;
  margin-top: 2px;
}

.footer-icon {
  height: 18px;
  color: white;
}

.footer a {
  color: white;
}

.mw {
  max-width: 800px;
}

.pt-1 {
  padding-top: 32px;
}

.pl-1 {
  padding-left: 32px;
}

.pr-1 {
  padding-right: 32px;
}

.pb-2 {
  padding-bottom: 32px;
}

.pb-3 {
  padding-bottom: 48px;
}

.underline {
  text-decoration: underline;
}

.text-center {
  text-align: center;
}
