:root{
    --intro-jumbotron-delay: 2.0s;
    --intro-jumbotron-fade-time: 1.0s;
}

.hero-quote {
    font-family: "Orbit", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  /* HEADER */
  
.hero-div {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  transform-origin: center;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background-color: var(--background);
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 45%, color-mix(in srgb, var(--primary) 12%, transparent) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 50% 50%, color-mix(in srgb, var(--secondary) 8%, transparent) 0%, transparent 70%);
}

.hero-div h1, .hero-div h2 {
  text-align: center;
}

.hero-title {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--primary) 50%, transparent))
          drop-shadow(0 0 40px color-mix(in srgb, var(--secondary) 25%, transparent));
}
  
.fadeout-cover
{
  position: fixed;
  top: 0;
  left: 0;
  width: 1000vw;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  background-color: var(--background);
}

.see-more-container
{
  display: flex;
  align-items: center;
  line-height: 1;
  vertical-align: middle;
  margin-top: auto;
  justify-content: center;
  gap: 16px;
  color: var(--primary);
}

.see-more-container p {
  color: var(--primary);
}

.see-more-container i {
  color: var(--primary);
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--primary) 40%, transparent));
}

.see-more-container > *
{
  display: flex;
  align-items: center;
  line-height: 1;
  vertical-align: middle;
  margin-top: auto;
  justify-content: center;
  gap: 8px;
}
  
.hero-content
{
  position: absolute;
  transform-origin: center;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
  
.hero-content > *
{
  position: absolute;
  transform-origin: center;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 75dvw;
}

.hero-subtitle {
  text-align: center;
}

.hero-fancy
{
  font-weight: 600;
  color: var(--primary);
  text-shadow: 0 0 8px color-mix(in srgb, var(--primary) 60%, transparent),
               0 0 24px color-mix(in srgb, var(--primary) 25%, transparent);
}

.hero-profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px auto;
  border: 3px solid var(--primary);
  box-shadow: 0 0 12px color-mix(in srgb, var(--primary) 40%, transparent),
              0 0 32px color-mix(in srgb, var(--secondary) 20%, transparent);
}


@media screen and (max-height: 560px) {
  h1.hero-title {
    font-size: 20pt;
  }
  
  h2.hero-title {
    font-size: 12pt;
  }
  
  #project-section-header
  {
    font-size: 18pt;
  }
  
  .hero-icon {
    text-decoration: none;
    padding: 12px;
    font-size: 20pt;
  }
  
  .hero-profile-pic {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }
}


  
.fadeout-cover
{
  position: absolute;
  transform-origin: center;
  z-index: 1;
  width: 100dvw;
  height: 100dvh;
  background-color: var(--background);
}

.fadeout-cover
{
  opacity: 0;
}

.fadeout-cover.animated
{
  -webkit-animation: fadeout var(--intro-jumbotron-fade-time) cubic-bezier(0.645, 0.045, 0.355, 1.000) alternate both;
          animation: fadeout var(--intro-jumbotron-fade-time) cubic-bezier(0.645, 0.045, 0.355, 1.000) alternate both;
  -webkit-animation-delay: calc(var(--intro-jumbotron-delay) + var(--intro-jumbotron-fade-time));
          animation-delay: calc(var(--intro-jumbotron-delay) + var(--intro-jumbotron-fade-time));
}

.div-to-toolbar {
  height: 100lvh;
  top: 0%;
  translate: -50% 0%;
}
  
  #psuedo-hero-section {
    height: 100dvh;
    min-height: 20dvh;
    padding: 0;
    margin: 0;
  }
  
#secondary-jumbo-section {
    height: 60dvh;
    margin: 0px;
    padding: 0px;
    background-color: var(--background-lighter);
}

  @-webkit-keyframes fadeout {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes fadeout {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  
  
  .focus-in-contract.animated {
      -webkit-animation: focus-in-contract var(--intro-jumbotron-fade-time) cubic-bezier(0.645, 0.045, 0.355, 1.000) alternate both;
              animation: focus-in-contract var(--intro-jumbotron-fade-time) cubic-bezier(0.645, 0.045, 0.355, 1.000) alternate both;
    -webkit-animation-delay: var(--intro-jumbotron-delay);
            animation-delay: var(--intro-jumbotron-delay);
  }

  .focus-out-contract {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  
  .focus-out-contract.animated {
      -webkit-animation: focus-in-contract var(--intro-jumbotron-fade-time) cubic-bezier(0.645, 0.045, 0.355, 1.000) both reverse;
              animation: focus-in-contract var(--intro-jumbotron-fade-time) cubic-bezier(0.645, 0.045, 0.355, 1.000) both reverse;
    -webkit-animation-delay: var(--intro-jumbotron-delay);
            animation-delay: var(--intro-jumbotron-delay);
  }

  .note-block p {
    align-items: center;
    text-align: center;
  }
  
  
  
  /* ----------------------------------------------
   * Generated by Animista on 2024-3-11 18:54:25
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info. 
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */
  
  /**
   * ----------------------------------------
   * animation focus-in-contract
   * ----------------------------------------
   */
   @-webkit-keyframes focus-in-contract {
      0% {
        -webkit-filter: blur(12px);
                filter: blur(12px);
        opacity: 0;
      }
      100% {
        -webkit-filter: blur(0px);
                filter: blur(0px);
        opacity: 1;
      }
    }
    @keyframes focus-in-contract {
      0% {
        -webkit-filter: blur(12px);
                filter: blur(12px);
        opacity: 0;
      }
      100% {
        -webkit-filter: blur(0px);
                filter: blur(0px);
        opacity: 1;
      }
    }