Make sure to add the class load-container to your section.
HTML Code
CSS Code
/* Adjust for desktop*/
.loader text {
font-family: Spartan;
font-size:5rem;
font-weight: bold;
word-break: break-all;
stroke: #000;
stroke-width: 2px;
line-height: 7rem;
}
.loader svg {
width: 480px;
height: 110px;
}
/* Adjust for tablet */
@media(max-width:1024px){
.loader text {
font-family: Spartan;
font-size:57px;
font-weight: bold;
word-break: break-all;
stroke: #000;
stroke-width: 1px;
line-height: 7rem;
}
.loader svg {
width: 340px;
height: 110px;
}
}
/* Adjust for mobile */
@media(max-width:767px){
.loader text {
font-family: Spartan;
font-size:38px;
font-weight: bold;
word-break: break-all;
stroke: #000;
stroke-width: 1px;
line-height: 7rem;
}
.loader svg {
width: 225px;
height: 110px;
}
}
Javascript Code