/*code for the swirly logo*/
.svg {
    display: block;
    font: 15em ;
    font-family:monospace;
    width: 1200px;
    height: 400px;
    margin: 0 auto;
    z-index:999;
}

.text-copy {
    fill: var(--white);
    stroke: var(--teal);
    stroke-dasharray: 200%;
    stroke-width: 0.3px;
    stroke-dashoffset: 0%;
    animation: stroke-offset 5s  linear;
    /*animation-iteration-count: 1*/
    z-index:999;
}

@keyframes stroke-offset{
    0%{stroke-dasharray: 10% 10% 10% 10% 10% ;}
    50%{stroke-dasharray: 33% 33% 33%;}
    100% { stroke-dasharray:100%;}
}

/*.swirl-text-bgr{
    /*background:rgba(242, 243, 247, 0.5);*//*
    background-image:linear-gradient(rgba(160, 207, 211, 1), rgba(242, 243, 247, 0));
   
  }

.swirl-text-bgr-dark{
    /*background:rgba(242, 243, 247, 0.5);*//*
    background-image:linear-gradient(rgba(39, 38, 53, 1),rgba(39, 38, 53, 0));
   
  }*/


/*for drawing the icons on the experiment page*/
.draw:hover {
    /*fill: var(--blue);*/
    stroke: var(--teal);
    stroke-dasharray: 500%;
    stroke-width: 4;
    /*stroke-dashoffset: 250%;*/
    animation: icon-draw 1s  linear;
    /*animation-iteration-count: 1*/
    z-index:999;
}

@keyframes icon-draw{
    0% {stroke-dashoffset:-250%;}
    100% { stroke-dashoffset:100%;}
}

/*code for new title that hopefully wont give people seizures*/
.animated-title {
    font-size: 7vw; 
    color: /*var(--teal)-->*/var(--raisin);
    position: relative;
    display: inline-block;
    text-align:center;
}

.animated-title::before {
	margin-left:auto;
}

.animated-title::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background-color: var(--pink);
    transform-origin: right;
    animation: underline 1s linear ; /* Continuous animation */
    /* animation-delay:2s; */
}

@keyframes underline {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }
    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/*banner*/
 .image-holder-blue { 
    width: 100%;
    position:relative; 
  }    
  
 .image-holder-blue:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(160, 207, 211, 0.5);
  }
  
  .image-holder-pink { 
    width: 100%;
    position:relative; 
  }    
  
 .image-holder-pink:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 181, 179, 0.5);
  }

  .image-holder-teal { 
    width: 100%;
    position:relative; 
  }    
  
 .image-holder-teal:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 122, 116, 0.5);
  }
  



 .text-overlay-banner {
    position: absolute;
  
    /* center code */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
    top: 35%;
    left: 50%;
    width: 100vw;
  
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  /*code for new title that hopefully wont give people seizures*/
  .animated-title2 {
      font-size: 7vw; 
      color: /*var(--teal)-->*/var(--white);
      position: relative;
      display: inline-block;
      text-align:center;
  }
  
  .animated-title2::before {
      margin-left:auto;
  }
  
  .animated-title2::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 5px;
      bottom: 0;
      left: 0;
      background-color: var(--white);
      transform-origin: right;
      animation: underline2 1s linear ; /* Continuous animation */
  }
  
  @keyframes underline2 {
      0% {
          transform: scaleX(0);
          transform-origin: left;
      }
      100% {
          transform: scaleX(1);
          transform-origin: left;
      }
  }
  /**/