
 * {
    font-family: 'Love Ya Like A Sister', cursive;
  }

  @font-face {
  font-family: 'Love Ya Like A Sister';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/loveyalikeasister/v11/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-BeL9Xxd.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

  body {
  font-family: 'Love Ya Like A Sister', cursive;
  background-color: white;
  color: rgb(241, 168, 11);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 100vh;
  margin: 0;
}

a {
  text-decoration: none;
  color: rgb(241, 168, 11);
}

/* START OF STYLE FOR WORD ANIMATION */
.word {
  /* font-family: 'Anton', sans-serif; */
  perspective: 1000px; 
  z-index: 2;
}

.word span {
  cursor: pointer;
  display: inline-block;
  font-size: 100px;
  user-select: none;
  line-height: .8;
  z-index: 2;
}

.word span:nth-child(1).active {
  /* animation: balance 1.5s ease-out; 
  animation: balance 0.5s ease-out; */
  animation: balance 0.1s ease-out;
  transform-origin: bottom left;
}

@keyframes balance {
  0%, 100% {
    transform: rotate(0deg);
  }
  
  30%, 60% {
    transform: rotate(-45deg);
  }
}

.word span:nth-child(2).active {
  /* animation: shrinkjump 1s ease-in-out; 
  animation: shrinkjump 0.5s ease-in-out; */
  animation: shrinkjump 0.1s ease-in-out;
  transform-origin: bottom center;
}

@keyframes shrinkjump {
  10%, 35% {
    transform: scale(2, .2) translate(0, 0);
  }
  
  45%, 50% {
    transform: scale(1) translate(0, -150px);
  }
  
  80% {
    transform: scale(1) translate(0, 0);
  }
}

.word span:nth-child(3).active {
  /* animation: falling 2s ease-out; 
  animation: falling 1.5s ease-out; */
  animation: falling 0.1s ease-out;
  transform-origin: bottom center;
}

@keyframes falling {
  12% {
    transform: rotateX(240deg);
  }
  
  24% {
    transform: rotateX(150deg);
  }
  
  36% {
    transform: rotateX(200deg);
  }
  
  48% {
    transform: rotateX(175deg);
  }
  
  60%, 85% {
    transform: rotateX(180deg);
  }
  
  100% {
    transform: rotateX(0deg);
  }
}

.word span:nth-child(4).active {
  /* animation: rotate 1s ease-out; 
  animation: rotate 0.5s ease-out; */
  animation: rotate 0.1s ease-out;
}

@keyframes rotate {
  20%, 80% {
    transform: rotateY(180deg);
  }
  
  100% {
    transform: rotateY(360deg);
  }
}

.word span:nth-child(5).active {
  /* animation: toplong 1.5s linear; 
  animation: toplong 0.5s linear; */
  animation: toplong 0.1s linear;
}

@keyframes toplong {
  10%, 40% {
    transform: translateY(-48vh) scaleY(1);
  }
  
  90% {
    transform: translateY(-48vh) scaleY(4);
  }
}

.word span:nth-child(6).active {
  /* animation: balance 1.5s ease-out; 
  animation: balance 0.5s ease-out; */
  animation: balance 0.1s ease-out;
  transform-origin: bottom left;
}

.word span:nth-child(7).active {
  /* animation: shrinkjump 1s ease-in-out; 
  animation: shrinkjump 0.5s ease-in-out; */
  animation: shrinkjump 0.1s ease-in-out;
  transform-origin: bottom center;
}

.word span:nth-child(8).active {
  /* animation: falling 2s ease-out; 
  animation: falling 1s ease-out; */
  animation: falling 0.5s ease-out;
  transform-origin: bottom center;
}

.word span:nth-child(9).active {
  /* animation: rotate 1s ease-out; 
  animation: rotate 0.5s ease-out; */
  animation: rotate 0.1s ease-out;
}

.fixed {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
/* END OF STYLE FOR WORD ANIMATION */

/* START OF CREATE A FADE OUT ANIMATION ON FOOTNOTES TEXT */
.text-blur-out {
	-webkit-animation: text-blur-out 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	 animation: text-blur-out 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

/**
 * ----------------------------------------
 * animation text-blur-out
 * ----------------------------------------
 */
 @-webkit-keyframes text-blur-out {
  0% {
    -webkit-filter: blur(0.01);
            filter: blur(0.01);
  }
  100% {
    -webkit-filter: blur(12px) opacity(0%);
            filter: blur(12px) opacity(0%);
  }
}
@keyframes text-blur-out {
  0% {
    -webkit-filter: blur(0.01);
            filter: blur(0.01);
  }
  100% {
    -webkit-filter: blur(12px) opacity(0%);
            filter: blur(12px) opacity(0%);
  }
}
/* END OF CREATE A FADE OUT ANIMATION ON FOOTNOTES TEXT */

/* START CONTENT AFTER TEXT ANIMATION INTRO */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
  font-size: 17px;
  background: rgba(0, 0, 0, 0.5);
}

#foldGridVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  display: none; /*NEEDED FOR TEXT ANIMATION */
}

.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding-left: 250px;
  padding-bottom: 30px;
  display: none; /*NEEDED FOR TEXT ANIMATION */
}

#pauseBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: rgb(243, 137, 17);
  color: rgb(243, 231, 231);
  cursor: pointer;
  display: none; /*NEEDED FOR TEXT ANIMATION */
}

#pauseBtn:hover {
  background: #ddd;
  color: rgb(241, 92, 6);
}
/* END OF CONTENT AFTER TEXT ANIMATION INTRO */

/* START OF GRIDS AND TUTORIAL LINKS ON THE RIGHT */
#rotate-textGrids {
         -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        position: absolute;
        right:10px;
        top: 40px;
        display: none;
        z-index: 3;
    }

    #rotate-textTutorials {
         -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        position: absolute;
        right:-3px;
        top: 120px;
        display: none;
        z-index: 3;
    }
/* END OF GRIDS AND TUTORIAL LINKS ON THE RIGHT */

/* START OF BOY */
.boy {
  position: absolute;
  left: 20px;
  display: none;
  z-index: 3;
}
/* END OF BOY */

/* START OF TOOLTIP ANIMATED */
.tooltip {
  position: relative;
}

.tooltip:before, .tooltip:after {
  display: block;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.tooltip:after {
 border-right: 6px solid transparent;
 border-bottom: 6px solid rgba(0,0,0,.75); 
  border-left: 6px solid transparent;
  content: '';
  height: 0;
    top: 20px;
    left: 20px;
  width: 0;
}

.tooltip:before {
  background: rgba(252, 136, 3, 0.952);
  border-radius: 2px;
  color: #fff;
  content: attr(data-title);
  font-size: 14px;
  padding: 6px 10px;
    top: 26px;
  white-space: nowrap;
}
.tooltip.fade:after, .tooltip.fade:before {
  transform: translate3d(0,-10px,0);
  transition: all .15s ease-in-out;
}
.tooltip.fade:hover:after,
.tooltip.fade:hover:before {
  opacity: 1;
  transform: translate3d(0,0,0);
}
.tooltip.expand:before {
  transform: scale3d(.2,.2,1);
  transition: all .2s ease-in-out;
}
.tooltip.expand:after {
  transform: translate3d(0,6px,0);
  transition: all .1s ease-in-out;
}
.tooltip.expand:hover:before, .tooltip.expand:hover:after {
  opacity: 1;
  transform: scale3d(1,1,1);
}

.tooltip.expand:hover:after {
  transition: all .2s .1s ease-in-out;
}

.tooltip.swing:before, .tooltip.swing:after {
  /* transform: translate3d(0,30px,0) rotate3d(0,0,1,60deg); */
  transform: translate3d(0,30px,0) rotate3d(0,0,1,90deg);
  transform-origin: 0 0;
  transition: transform .15s ease-in-out, opacity .2s;
}

.tooltip.swing:after {
  transform: translate3d(0,60px,0);
  transition: transform .15s ease-in-out, opacity .2s;
}

.tooltip.swing:hover:before, .tooltip.swing:hover:after {
  opacity: 1;
  /* transform: translate3d(0,0,0) rotate3d(1,1,1,0deg); */
  transform: translate3d(0,0,0) rotate3d(1,1,1,360deg);
}
/* END OF TOOLTIP ANIMATED */

/* START OF TOOLTIP FOR EMAIL ICON 
.tooltipEmail {
  position: relative;
  display: inline-block;
}

.tooltipEmail .tooltiptext {
  visibility: hidden;
    width: 220px;
    background-color: rgb(245, 143, 11);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -10px;
    margin-left: -245px;
    animation-name: tooltipEmail;
    animation-duration: 2s;
}

.tooltipEmail:hover .tooltiptext {
  visibility: visible;
}
 END OF TOOLTIP FOR EMAIL ICON */

/* START OF EMAIL ICON 
#emailIcon {
  position: absolute;
  right: 30px;
  bottom: 20px;
  color:orange;
  display: none;
}
END OF EMAIL ICON */

/* START OF BLUE GRID 1-4 */
.bounce-in-top {
	-webkit-animation: bounce-in-top 2s both;
	        animation: bounce-in-top 2s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2021-12-30 13:28:12
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation bounce-in-top
 * ----------------------------------------
 */
 @-webkit-keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
            transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
            transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
            transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
            transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
/* END OF BLUE GRID 1-4 */

#blueGrid1 {
  top: 10px;
  left: 10px;
  position: absolute;
}

#blueGrid2 {
  bottom: 10px;
  left: 10px;
  position: absolute;
}

#blueGrid3 {
  top: 10px;
  right: 10px;
  position: absolute;
}

#blueGrid4 {
  bottom: 10px;
  right: 10px;
  position: absolute;
}