<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "itc-american-typewriter", serif;
  box-sizing: border-box;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* "time bug" */
.timebug {
  font-weight: 700;
  -webkit-text-stroke: 0.2vw #ffa41d;
  color: #ffe23d;
  font-size: 10vw;
  line-height: .8;
  position: absolute;
  top: 2vh;
  left: 2vw;
  padding: 1vw;
  z-index: 1;
}

/* sky */
.sky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: background-color 2s linear;
}

/* grass moving bg */
.scroll-container {
  width: 100%;
  height: 100%;
  overflow:visible;
  position: relative;
}

.scrolling-bg {
  width: 200%;
  height: 100%;
  background: url(images/Bug_Time_BG.png) repeat-x;
  background-size: cover;
  animation: slide-left 100s linear infinite;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* bug */
.caterpillar-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.caterpillar {
  display: flex;
  align-items: center;
  position: absolute;
}

:root {
  --caterpillar-color: #a436ff;
  --leg-color: black;
}


.segment {
  width: 5vw;
  height: 5vw;
  background-color: var(--caterpillar-color);
  border-radius: 50%;
  animation: float 2s ease-in-out infinite;
  margin-top: 2vw;
  margin-left: -2vw;
  position: absolute;
}

.segment::before {
  content: "";
  position: absolute;
  bottom: -0.5vw;
  left: 0.8vw;
  width: 2vw;
  height: 0.8vw;
  background: var(--leg-color);
  box-shadow: 0 0 0 0.1vw var(--leg-color);
  border-radius: 0.4vw;
  box-shadow: 0 0 0 0.1vw var(--leg-color);
}

.segment:first-child {
  margin-left: 0;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-0.8vw); }
  100% { transform: translateY(0); }
}

/* underground section wih time/ date */
.info {
  background-color: rgb(119, 47, 32);
  color: white;
  padding: 2rem 2rem;
  text-align: center;
  width: 100vw;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* time and date type */
h1 {
  font-weight: 700;
  font-size: 10vw;
  line-height: 1;
  -webkit-text-stroke: 0.2vw #ff798f;
  color: #fe4570;
  margin: 0;
}

p {
  font-weight: 500;
  font-size: 6vw;
  line-height: 1.2;
  color: #ff798f;
  margin: 0;
}

/* make responsive */
@media (max-width: 768px) {
  .timebug {
    font-size: 12vw;
  }

  h1 {
    font-size: 12vw;
  }

  p {
    font-size: 6vw;
  }

  .segment {
    width: 6vw;
    height: 6vw;
    margin-left: -2.5vw;
  }

  .segment::before {
    width: 4vw;
    height: 1vw;
    left: 1vw;
    bottom: -0.5vw;
  }
}

@media (max-width: 480px) {
  .timebug {
    font-size: 14vw;
  }

  h1 {
    font-size: 14vw;
  }

  p {
    font-size: 7vw;
  }

  .segment {
    width: 7vw;
    height: 7vw;
    margin-left: -3vw;
  }

  .segment::before {
    width: 4.5vw;
    height: 1.2vw;
    left: 1.2vw;
    bottom: -0.6vw;
  }
}
/* background */
img {
  max-width: 100%;
  height: 100%;
}

.color-pickers {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  top: 10px;
  right: 10px;
  /*background: rgba(255, 255, 255, 0.8);*/
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.color-pickers label {
  display: flex;
  margin-bottom: 5px;
}</pre></body></html>