:root {
  --white: white;
}

.transition {
  z-index: 4000;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.transition-trigger {
  display: block;
}

.section-2 {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.home-fadein-logo {
  opacity: 0;
  width: 20%;
  display: none;
}

.body {
  background-image: linear-gradient(#ffffff8c, #ffffff8c), url('../images/Graph-Paper-BG-2.webp');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  background-attachment: scroll, fixed;
}

.container {
  max-width: 1200px;
}

.container.center-flex {
  justify-content: center;
  display: flex;
}

.h1.title {
  text-align: center;
  font-family: Inconsolata, monospace;
  font-size: 60px;
}

.header {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section {
  margin-top: 40px;
  margin-bottom: 40px;
}

.paragraph {
  text-align: left;
  font-family: Inconsolata, monospace;
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
}

.paragraph.fig-caption {
  text-align: center;
  font-size: 16px;
  font-style: italic;
  line-height: 26px;
}

.paragraph.fig-align {
  margin-top: 20%;
}

.paragraph.fig-align-less {
  margin-top: 5%;
}

.paragraph.footer {
  margin-top: 0%;
  font-size: 14px;
}

.spacer-100px {
  height: 100px;
}

.div-block {
  display: flex;
}

.column {
  flex-direction: column;
  justify-content: center;
  height: 100%;
  display: flex;
}

.page-wrapper {
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
}

.watermark {
  width: auto;
  height: auto;
  margin-right: 0;
}

.footer-flex {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cc-link-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.img-max-width-50 {
  width: 60%;
}

.image {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .body {
    padding: 15px;
  }

  .paragraph.fig-align, .paragraph.fig-align-less, .paragraph.footer {
    margin-top: 0%;
  }

  .columns {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .footer-flex {
    align-items: center;
  }

  .img-max-width-50 {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .spacer-100px._50px-mobile {
    height: 50px;
  }
}

@media screen and (max-width: 479px) {
  .transition {
    height: 100%;
    display: none;
    position: fixed;
  }

  .body {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph {
    text-align: left;
  }

  .paragraph.footer {
    text-align: center;
    margin-top: 6%;
  }

  .page-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .watermark {
    width: 80%;
    margin-right: 0;
  }

  .footer-flex {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
  }

  .cc-link-block {
    margin-left: auto;
    margin-right: auto;
  }
}


