<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* rounded corners */
.plot {
  background-color: #f9f9f9;
  color: #333333;
  border: 2px solid #e0e0e0;
  padding: 0px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 500px;
}
@media (min-width: 1200px) {
  .plot {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .plot {
    max-width: 100%;
    padding: 0px;
  }
}
.plot {
  margin-bottom: 10px;
  overflow-x: hidden;
  box-sizing: border-box;
}

#app-container {
  background-color: #f9f9f9;
  padding-top: 15vh; /* prevent hiding rest of content under header */
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  color: #333;
}

h2 {
  font-size: 1.5em;
  font-weight: bold;
}

h3 {
  font-size: 1.2em;
  margin: 20px 0;
}

h1 {
  font-size: 1.6em;
  font-weight: bold;
}
h1:hover {
  color: #e14a24;
  transition: color 0.3s ease;
}

.modal {
  display: none; /* hide by default */
  position: fixed;
  z-index: 1000; /* on top of everything */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* slightly transparent */
  justify-content: center;
  align-items: center;
}
.modal .modal-content {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.modal .modal-content .welcome-image {
  max-width: 80%;
  max-height: 80%;
  height: auto;
  width: auto;
  border-radius: 10px;
  object-fit: cover;
}
.modal .modal-content .modal-text {
  position: absolute;
  bottom: 20px;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  width: calc(60% - 40px);
}

.responsive-navbar {
  position: fixed; /* stay at top of screen */
  top: 0; /* stay at top of screen */
  left: 0; /* take up full width */
  right: 0; /* take up full width */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: rgba(249, 249, 249, 0.8);
  border-bottom: 1px solid rgba(249, 249, 249, 0.8);
  z-index: 1000; /* make sure it's on top of everything */
}
.responsive-navbar a, .responsive-navbar select { /* links and dropdowns */
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  transition: color 0.3s ease;
}
.responsive-navbar a:hover, .responsive-navbar select:hover {
  color: #00a8cc;
}
.responsive-navbar .home-logo {
  max-height: 50px;
  width: auto;
  display: block;
  margin: auto;
}
.responsive-navbar #title {
  font-size: 1.8em;
  color: #f4a261;
  font-weight: bold;
  padding: 10px;
  border-radius: 10px;
}
.responsive-navbar .year-dropdown {
  font-size: 1.2em;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-images {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.carousel-images img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 2px solid #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: absolute;
  top: 50%; /* position top-left corner of image at center of container */
  left: 50%; /* see above */
  transform: translate(-50%, -50%); /* reverses the above, centering the image */
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.carousel-controls span {
  margin: 0 30px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.carousel-controls #prev-button:hover,
.carousel-controls #play-pause-button:hover,
.carousel-controls #next-button:hover {
  transform: scale(1.1);
  color: #0085A1;
}

#attendee-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: #0077b6;
  color: #f1faee;
  border: 2px solid #004f6d;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  width: 30%;
}
#attendee-counter h2 {
  font-size: 1.6em;
  font-weight: bold;
}
#attendee-counter h2:hover {
  color: #e9c46a;
  transition: color 0.3s ease;
}
#attendee-counter h4 {
  font-style: italic;
  color: #e6e6e6;
  font-size: 1em;
}
#attendee-counter .attendee-stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
}
#attendee-counter .attendee-stats .stat {
  text-align: center;
}
#attendee-counter .attendee-stats .stat .stat-wrapper:hover h2, #attendee-counter .attendee-stats .stat .stat-wrapper:hover p {
  color: #e9c46a;
}
#attendee-counter .attendee-stats .stat .stat-wrapper h2 {
  font-size: 1.2em;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}
#attendee-counter .attendee-stats .stat .stat-wrapper p {
  font-size: 1.4em;
  font-weight: bold;
  transition: color 0.3s ease;
}

#total-number {
  background-color: #f4a261;
  color: #333333;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid #d89a5f;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 60%;
}
#total-number h2 {
  font-size: 1.6em;
  font-weight: bold;
  margin: 10px 0;
}
#total-number h2:hover {
  color: #00a8cc !important;
  transition: color 0.3s ease;
}
#total-number .totals {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
}
#total-number .totals .total {
  text-align: center;
}
#total-number .totals .total .total-wrapper:hover h2, #total-number .totals .total .total-wrapper:hover p {
  color: #00a8cc;
}
#total-number .totals .total .total-wrapper h2 {
  font-size: 1.4em;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}
#total-number .totals .total .total-wrapper p {
  font-size: 1.4em;
  font-weight: bold;
  transition: color 0.3s ease;
}

#cost-per-attendee {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#cost-per-attendee .totals {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#cost-per-attendee .totals .total {
  flex-grow: 1;
  margin: 0 10px;
}

.carousel-container, #attendee-counter, #home, #view-2014-2016, #year-2020, #total-number, .plot-instructions {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#home {
  padding: 10px;
}
#home h2 {
  margin-bottom: 10px;
}
#home h3 {
  margin: 20px 0;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#home #intro {
  background-color: #f4a261;
  color: #333333;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid #d89a5f;
  width: 100%;
  margin: 0 auto;
  font-size: 1.4em;
  font-weight: bold;
  padding: 20px;
}
#home #markdown-content {
  margin-top: 20px;
  background-color: #264653;
  color: #e9c46a;
  border: 2px solid #1e3d42;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 40px 40px;
}
#home #markdown-content ul {
  margin-left: 0;
  padding-left: 0;
}
#home #email-form {
  background-color: #f4a261;
  border-radius: 10px;
}
#home #email-form h3 {
  margin-bottom: 20px;
  background-color: #f4a261;
  border-radius: 10px;
  color: #333;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
#home #email-form h3:hover {
  background-color: #e14a24;
}
#home #email-form form {
  display: inline-block; /* center form */
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 10px;
}
#home #email-form form input, #home #email-form form textarea, #home #email-form form button {
  width: calc(100% - 20px); /* account for padding */
  margin: 10px 0;
  font-family: inherit;
  font-size: inherit;
  padding: 10px;
  border: 1px solid gray;
  border-radius: 10px;
  box-sizing: border-box; /* ensure padding doesn't affect width */
}
#home #email-form form textarea {
  resize: vertical; /* only allow resizing vertically */
}
#home #email-form form button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  font-weight: bold;
  font-size: 1.2em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}
#home #email-form form button:hover {
  background-color: #1f756a;
}

.view {
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.view h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}
.view h2:hover {
  color: #00a8cc;
  transition: color 0.3s ease;
}
.view h3 {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: gray;
}
.view #early-years {
  background-color: #f4a261;
  color: #333333;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid #d89a5f;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.view #early-years h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333333; /* override color */
  font-weight: bold;
}
.view #early-years h2:hover {
  color: #00a8cc;
  transition: color 0.3s ease;
}
.view #early-years h4 {
  font-style: italic;
  font-size: 1em;
}
.view #empty-garden {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -100px;
}
.view #empty-garden #year-pic {
  max-width: 100%; /* scale within the container */
  max-height: 100%; /* scale within the container */
  object-fit: contain;
  border: 2px solid #333333;
  border-radius: 10px;
}
.view .plot-instructions {
  background-color: #2a9d8f;
  color: #ffffff;
  border: 2px solid #1d5d5c;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
  padding: 10px;
  transition: color 0.3s ease;
}
.view .plot-instructions:hover {
  color: #e9c46a;
}
.view .plot-instructions h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: bold;
}
.view .plot-instructions h3:hover {
  color: #e9c46a;
  transition: color 0.3s ease;
}

#tableau-viz {
  margin: 0 auto;
  margin-bottom: 10px;
  overflow-x: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #333333;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 420px;
}
@media (min-width: 768px) {
  #tableau-viz {
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  #tableau-viz {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  #title {
    display: none;
  }
  .responsive-navbar a, .responsive-navbar select {
    margin: 10px 0;
  }
  #app-container {
    padding-top: 20vh;
  }
  #email-form {
    padding: 10px;
  }
  #email-form form {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
  #email-form input, #email-form textarea, #email-form button {
    width: calc(100% - 20px);
  }
  #empty-garden {
    height: auto;
    padding-top: 0;
  }
  #year-pic {
    margin-top: 0;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 480px) {
  .responsive-navbar {
    padding: 5px;
  }
  .responsive-navbar a, .responsive-navbar select {
    margin: 10px 0;
  }
  #app-container {
    padding-top: 20vh;
  }
  #attendee-counter {
    width: 90%;
  }
  #total-number {
    width: 90%;
  }
  #home {
    padding: 5px;
  }
  #home #intro {
    width: 100%;
    padding: 5px;
  }
  #home #email-form {
    padding: 5px;
  }
  #home #email-form form {
    width: 100%;
    padding: 5px;
  }
  #home #email-form input, #home #email-form textarea, #home #email-form button {
    width: calc(100% - 10px);
    margin: 5px 0;
  }
  #home #email-form button {
    padding: 8px 16px;
    font-size: 1em;
    margin-top: 5px;
  }
  .view {
    padding: 5px;
  }
  #early-years {
    width: 90%;
  }
  .plot-instructions {
    width: 90%;
  }
  #empty-garden {
    height: auto;
  }
  #year-pic {
    margin-top: 0;
    width: 100%;
    height: auto;
  }
}
#mask-container {
  z-index: 1000; /* on top of everything else */
}

.mask {
  left: -100px; /* start off-screen */
  width: 50px;
  position: absolute;
}

@keyframes roll-across {
  from {
    transform: translateX(-50px) rotate(0deg); /* start off-screen */
  }
  to {
    transform: translateX(calc(100vw + 100px)) rotate(360deg); /* end beyond screen, one full rotation */
  }
}
/* Footer styles */
.site-footer {
  padding: 1em 0;
  background: #f8f9fa;
  border-top: 0px solid #e5e5e5;
  text-align: center;
  font-size: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}

.site-footer .footer-owner {
  color: #888;
  font-weight: normal;
  font-size: 1em;
  letter-spacing: 0.01em;
}

.site-footer .footer-author {
  font-weight: 600;
  color: #888;
  margin-left: 0.2em;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
  align-items: center;
  justify-content: center;
}

.site-footer .footer-icon {
  margin-right: 0.3em;
  vertical-align: middle;
}

.site-footer .portfolio-link {
  color: #333 !important;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer .linkedin-link {
  color: #0077b5;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer .github-link {
  color: #333 !important;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus {
  color: #0085a1 !important;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    gap: 0.8em;
    font-size: 0.97em;
    padding: 1.5em 0.5em;
  }
  .site-footer .footer-links {
    flex-direction: column;
    gap: 0.5em;
  }
}

/*# sourceMappingURL=styles.css.map */
</pre></body></html>