:root {
  /* Colors */
  --white: #fff;
  --headings: #332f62;
  --darker-blue: #2d3f5d;
  --light-blue: #77aef9;
  --lighter-blue: #6798dc;
  --dark-blue: #4085f4;
  --text: #1e2843;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif !important;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 2.2rem;
  color: var(--headings);
  text-shadow: 0px 0px 40px #4343430f;
}

p {
  color: var(--darker-blue);
  font-size: 1.25rem;
}

p > span {
  color: var(--dark-blue);
  text-decoration: underline;
  font-size: 1.25rem;
}

.underline {
  text-decoration: underline;
}

span {
  overflow-wrap: break-word;
}

/* ----------------- Hero Section ----------------- */

#hero {
  min-height: 100vh;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  gap: 10rem;
  padding-bottom: 22rem;
}

#openwater-logo {
  width: 340px;
}

#hero-main-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

#dots-img {
  position: absolute;
  top: -70px;
  left: -45px;
  z-index: -1;
}

#arrow-down {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

#arrow-down:hover > img {
  animation: bounce 2s ease 0.1s;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ----------------- Main ----------------- */

.code-box {
  background-color: var(--darker-blue);
  color: var(--white);
  border-radius: 9px;
  padding: 1rem;
}

.small {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 45px;
}

.code-box p {
  color: var(--white);
  margin-bottom: 0;
}

.outer-list {
  padding-left: 1rem;
  font-size: 1.25rem;
}

.outer-list > li > span:first-of-type {
  color: var(--text);
}

.outer-list > li > span {
  color: var(--dark-blue);
}

.inner-list {
  list-style: none;
}

.inner-list > li > span {
  color: var(--lighter-blue);
}

#dataset-question-link {
  position: fixed;
  top: 50%;
  right: -320px;
  transform: translateY(-50%);
  z-index: 9999 !important;
  transition: all 0.4s ease;
}

#dataset-question-link:hover {
  right: 0px;
  text-decoration: none;
}

#dataset-question-link > div {
  background-color: #3256A4;
  border-radius: 100px 0 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
  height: 70px;
  padding-left: 1.5rem;
  padding-right: 1rem;
}

#dataset-question-link > div > div > * {
  color: #fff;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
}

#dataset-question-link > div > div > h1 {
  font-size: 18px;
}

#dataset-question-link > div > div > h2 {
  font-size: 14px;
}

#dataset-question-link > div > img {
  width: 40px;
  height: 40px;
}

/* ----------------- Footer ----------------- */

footer {
  background-color: var(--darker-blue);
  padding: 2rem 0;
}

footer p {
  color: var(--white);
  font-size: 16px;
}

footer a {
  color: var(--light-blue);
  font-size: 16px;
}

.powered-by {
  font-size: 20px;
  font-weight: bold;
}

/* ----------------- Media queries ----------------- */

@media screen and (max-width: 1300px) {
  #hero-main-img {
    display: none;
  }
}
