<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  font-size: 18px;
}

body {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 1rem;
  margin: 0;
  overflow: hidden;

  background-color: #FDF7FA;
}

h1 {
  color: black;
  font-size: 5rem;
  z-index: 1;
}

h2 {
  font-size: 2rem;
}

p {
  max-width: 1200px;
  font-size: 1rem;
  text-align: justify;
}

strong {
  font-weight: 500;
}

span {
  text-align: justify;
}

footer {
  background-color: #f2f2f2;
  padding: 10px;
  text-align: center;
  color: #5c5c5c;
  font-size: 1rem;
  border-top: 1px solid #e7e7e7;
  scroll-snap-align: end;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-icon {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 1rem;
  width: 1rem;
}

.info-icon .info-tooltip {
  visibility: hidden;
  width: 220px;
  background-color: #f9f9f9;
  color: #333;
  text-align: left;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position the tooltip above the icon */
  left: 50%;
  margin-left: -110px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.info-icon:hover .info-tooltip {
  visibility: visible;
}

.container {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overflow-y: scroll;
  height: 100vh;
}

.section {
  scroll-snap-align: start;
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section:nth-child(4), .section:nth-child(6) {
  background: #EDEBE9;
}

.starting-page {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.information-page {
  background-color: black;
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.summary-page {
  background-color: black;
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.information-text-container {
  width: 40%;
  margin-right: 7%;
}

.information-text {
  font-size: 1.25rem;
}

.summary-page {
  background-color: black;
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.summary-text-container {
  width: 40%;
  margin-left: 7%;
}

.background-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.chart-container {
  margin: 5px;
  max-width: 1200px;
  overflow-x: auto;
}

.map-text {
  font-size: 1rem;
}

#dualAxisChart {
  width: 3000px;
  height: 500px;
}

.event .card {
  pointer-events: auto;
  position: absolute;
}

.event:hover .card {
  visibility: visible;
}

.title-right-container {
  display: inline-block;
  text-align: right;
  width: 95%;
  margin-right: 5%;
}

.scatter-plot-container {
  display: flex;

}

.sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#correlation {
  width: 300px;
  height: 4rem;
}

#slider-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;

  #slider {
    flex-grow: 1;
    margin: 0 10px;
  }

  #date-label {
    position: absolute;
    top: 20px;
    white-space: nowrap;
  }
}

#choroplethMapChart {
  z-index: 1;
  margin-bottom: 2%;

  .state {
    stroke: #333;
    stroke-width: 0.5px;

    &amp;:hover {
      stroke: #F55353;
      stroke-width: 2px;
      z-index: 100;
    }
  }

  .nation {
    fill: none;
    stroke: #333;
    stroke-width: 0.5px;
  }

  .legend text {
    font-size: 12px;
  }

  .legend rect {
    stroke: #000;
    stroke-width: 0.5px;
  }
}

.tooltip {
  z-index: 1;
  position: absolute;
  text-align: center;
  width: 60px;
  padding: 2px;
  font: 12px sans-serif;
  background: lightsteelblue;
  border: 0px;
  border-radius: 8px;
  pointer-events: none;
}

.stacked-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.stacked-bar-quote {
  font-size: 1.2rem;
  color: #5c5c5c;
  font-family: "Times New Roman", cursive;
  font-style: italic;
}

.stacked-bar-text {
  width: 40%;
  margin-left: 2%;
  margin-right: 2%;
}

#dot-nav {
  position: fixed;
  top: 50%;
  right: 2.5%;
  transform: translateY(-50%);
  z-index: 10;
}

#dot-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#dot-nav li {
  margin: 10px 0;
}

#dot-nav a {
  display: block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  transition: background 0.3s;
}

#dot-nav a.active {
  background: #333;
}

.input-gci {
  accent-color: #143F6B;
}

.input-oil {
  accent-color: #77966D;
}

.input-gas {
  accent-color: #F55353;
}

.input-aluminium {
  accent-color: #FEB139;
}

.input-copper {
  accent-color: #0B666A;
}

.input-wheat {
  accent-color: #9A4C95;
}

.input-corn {
  accent-color: #5F1A37;
}

.input-cotton {
  accent-color: #35A29F;
}

.input-coffee {
  accent-color: black;
}

.input-sugar {
  accent-color: brown;
}




</pre></body></html>