
/*html,body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Heebo", sans-serif;
  background: #f4f4f4;
}*/

.animated_text {
    margin: 0;
    padding: 0;
    font-size: 7rem;
    line-height: 1;
    letter-spacing: 0.3rem;
    color: #fff;
    text-align: center;
    justify-content: center;
}

.animated_container {
    padding-top: 30vh;
}

.desc {
  padding: 1rem;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  opacity: 0;
  transition: 1s 1.5s;
}

/*code sample from here*/
/*
[required code]
parent {
  opacity: 0;
}
parent span {
  //translate effect
  position: relative;
  top: xxx;
  left: xxx;
  //fade effect
  opacity: 0;
}
*/
.ex1 {
    opacity: 0;
    font-weight: 600;
}
    .ex1 span {
        position: relative;
        top: 10px;
        left: 10px;
        opacity: 0;
    }

.ex2 {
    opacity: 0;
    font-weight:600;
  
}
    .ex2 span {
        position: relative;
        left: -10px;
        opacity: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
   }
/*Iphone SE*/
@media (max-width: 400px) {
    .animated_text {
        font-size: 4rem;
    }
    .animated_container {
        padding-top: 20vh;
    }

}

@media (max-width: 900px) {
    .animated_text {
        font-size: 5rem;
    }
}