@keyframes animationOne {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes text1 {
0% {
color: #000;
margin-bottom: -40px;
}
85% {
letter-spacing: 8px;
margin-bottom: -40px;
}
}
.fullscreen_title {
transform: translate(0px, 120%);
opacity: 0;
transition: all 0.8s ease 0s;
}
.fullscreen_title._active {
transform: translate(0px, 0px);
opacity: 1;
}