.progress {
  background-color: bisque !important;
}

.progress .indeterminate {
  background-color: #6d4c41;
}

nav {
  height: 80px;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* let mouse clicks pass through */
    opacity: .3;
}

#carouselHeader {
  margin-left: .75rem;
}


@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Uncial+Antiqua&display=swap');

#typewriter-heading {
  font-family: 'Fredoka One';
  font-size: 2.4rem;
  color: #d7ccc8;
  text-shadow: 2px 5px 4px rgba(55, 30, 10, .6);
  animation: squishy 2s infinite ease-in-out;
  letter-spacing: 2px;
}

/* Optional fun squish effect */
@keyframes squishy {
  0% {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.05, 0.95);
  }
  60% {
    transform: scale(0.97, 1.03);
  }
  100% {
    transform: scale(1, 1);
  }

}

@media only screen and (max-width: 600px) {
  .content {
    height: 100vh;
    background: white;
    padding: 20px;
  }
  .mobileImageContainer {
    display: block;
    max-height: 58vh;
    overflow: hidden;
    position: relative;
  }
  .mobileImage {
    display: block;
    position: relative;
    top: -50vh;
    left: -76vw;
    background-size: cover;
    background-position: center;
    will-change: transform;
  }
  .parallax-container {
    display: none;
  }
  .parallax {
    display: none;
  }
  .brand-logo {
    font-size: 2.4rem !important;
  }
  #typewriter-heading {
    margin-left: -7.2rem;
  }
}

@media only screen and (min-width: 601px) {
  .mobileImageContainer {
    display: none;
  }
  .mobileImage {
    display: none;
  }

  #carouselHeader {
    margin-left: 4.75rem;
  }
  #typewriter-heading {
    margin-left: .5rem;
  }
}