@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Noto+Sans&family=Ubuntu&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  font-family: "Ubuntu", sans-serif;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.header, .footer {
  grid-row: 1/2;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("../imgs/underwater.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1164px) {
  .header, .footer {
    display: grid;
    justify-content: stretch;
    justify-items: center;
  }
}

.heading-1, .part-a-heading, .part-b-heading, .context h2, .paragraph-text, .footer-text, .anchor-text, .heading-2 {
  font-family: "Fjalla One", sans-serif;
  color: white;
  font-size: 64px;
  margin: 0 auto 0 auto;
  text-align: center;
  animation: fadein 2s;
}
@media screen and (max-width: 414px) {
  .heading-1, .part-a-heading, .part-b-heading, .context h2, .paragraph-text, .footer-text, .anchor-text, .heading-2 {
    font-size: 12vw;
  }
}

.heading-2 {
  font-family: "Noto Sans", sans-serif;
  font-size: 32px;
  animation: fadein 4s;
}
@media screen and (max-width: 414px) {
  .heading-2 {
    font-size: 6vw;
  }
}

nav {
  grid-row: 2/3;
}

.paragraph-text, .footer-text, .anchor-text {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.1rem;
  animation: none;
  margin: 0;
  text-align: left;
  color: black;
  line-height: 1.75;
}

.footer-text, .anchor-text {
  color: white;
  margin: 0 auto 0 auto;
  text-align: center;
}

.anchor-text {
  text-decoration: none;
}

.context {
  text-align: center !important;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.context h2 {
  margin-bottom: 1.25em;
}

.content-1 {
  grid-row: 3/4;
  background-color: #BBE4FC;
}

.content-2 {
  grid-row: 4/5;
  background-color: #0872b0;
}

.part-a {
  max-width: 90%;
  margin: 100px auto 100px auto;
  display: grid;
  grid-template-columns: 8fr 2fr;
}
@media screen and (max-width: 1366px) {
  .part-a {
    grid-template-columns: auto;
    grid-template-rows: auto, 1fr;
    row-gap: 50px;
  }
}

.timeline-container {
  grid-column: 1/2;
}
@media screen and (max-width: 800px) {
  .timeline-container {
    grid-row: 2/3;
  }
}

.part-a-heading, .part-b-heading, .context h2 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 2.5rem;
  animation: none;
  grid-row: 1/2;
  grid-column: 2/3;
}
@media screen and (max-width: 1366px) {
  .part-a-heading, .part-b-heading, .context h2 {
    grid-column: 1/2;
  }
}

.part-b-heading {
  margin-bottom: 100px;
  color: white;
}

.part-b-container, .part-b-inner {
  width: 90%;
  background-color: white;
  border-radius: 5px;
  padding: 20px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 640px) {
  .part-b-container, .part-b-inner {
    width: 100%;
  }
}

.part-b-inner {
  background-color: snow;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  width: 100%;
}
.part-b-inner h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75em;
  font-family: "Fjalla One", sans-serif;
  color: rgba(0, 0, 0, 0.7);
}
.part-b-inner h5 {
  margin-top: 0.5em;
}
.part-b-inner li {
  margin-top: 0.5em;
}

.timeline-heading {
  font-family: "Fjalla One", sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5em;
  text-align: left;
}

.timeline-item {
  padding: 3em 2em 2em;
  position: relative;
  color: rgba(0, 0, 0, 0.7);
  border-left: 2px solid rgba(0, 0, 0, 0.3);
}
.timeline-item ul {
  list-style-type: circle;
}
.timeline-item ul > li {
  margin-top: 0.5em;
}
.timeline-item::before {
  content: attr(field);
  position: absolute;
  left: 2em;
  font-weight: bold;
  top: 1em;
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 0.785rem;
}
.timeline-item::after {
  width: 10px;
  height: 10px;
  display: block;
  top: 1em;
  position: absolute;
  left: -7px;
  border-radius: 10px;
  content: "";
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
}
.timeline-item:last-child {
  border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0)) 1 100%;
}

.content-image {
  border: 3px solid gray;
  margin: 0 1em 1em 1em;
  max-width: 35vw;
  height: auto;
  width: 250px;
  float: right;
}

.part-b {
  max-width: 90%;
  margin: 100px auto 100px auto;
}

.part-b-list {
  direction: ltr;
  margin-top: 1em;
  list-style-type: square;
}

.icon {
  width: 45px;
  height: auto;
  border-radius: 5px;
  margin: 0 auto 0 auto;
}

.footer {
  grid-row: 5/6;
  height: 250px;
  background-image: none;
  margin-bottom: 0;
  background-color: #3C647D;
}

.button {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  margin: 0 auto 0 auto;
  border: 1px solid white;
  background-color: transparent;
  border-radius: 5px;
  padding: 5px;
}
.button:hover, .button:focus, .button:active {
  background-color: white;
}
.button:hover .anchor-text, .button:focus .anchor-text, .button:active .anchor-text {
  color: black;
}

.reveal {
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: 1.5s all ease;
}
.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

/*# sourceMappingURL=style.css.map */
