
main{
    width: 100%;
}
main article{
    width: 100%;
    height: 100vh;
    display: flex;
}
article > section{
    box-sizing: border-box;
/*    border: 5px solid black;*/
    min-width: 25%;
}
.animations .rings{
    background-color: #25304a;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.animations .rings .ring{
    min-width: 300px;
    min-height: 300px;
/*    background-color: #fff;*/
    border-radius: 50%;
    box-shadow: inset 0 0 30px #d3dcf0;
    animation-name: rings;
    animation-iteration-count: infinite;
    animation-duration: 2.4s;
    position: absolute;
    transform: scale(0)
}
.animations .rings .ring:nth-child(2){animation-delay: 0.6s}
.animations .rings .ring:nth-child(3){animation-delay: 1.2s}
.animations .rings .ring:nth-child(4){animation-delay: 1.8s}
@keyframes rings{
    0%{
        transform: scale(100%);
        box-shadow: inset 0 0 30px rgba(211, 220, 240, 0);
    }
    100%{
        transform: scale(0%);
        box-shadow: inset 0 0 30px rgba(211, 220, 240, 1);

    }
}
section.tdside{
    background-color: #dbdbdb;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.tdside .text{
    color: #e6351e;
    letter-spacing: 2px;
}
section.tdside .top,
section.tdside .bot{
    width: 20px;
    height: 45px;
    background-color: #e6351e;
    position: absolute;
}
section.tdside .top{
    animation: 1s linear infinite alternate squishtop;
}
section.tdside .bot{
    animation: 1s linear infinite alternate squishbot;

}
@keyframes squishtop{
    0%{
        transform: translateX(-70px)
                    translateY(0px)
                    scaleY(1);
    }
    10%{
        transform: translateX(-70px)
                    translateY(0px)
                    scaleY(1);
    }
    30%{
        transform: translateX(-35px)
                    translateY(-20px)
                    scaleY(0.25);
    }
    60%{
        transform: translateX(35px)
                    translateY(-20px)
                    scaleY(0.25);
    }
    90%{
        transform: translateX(70px)
                    translateY(0px)
                    scaleY(1);
    }
    100%{
        transform: translateX(70px)
                    translateY(0px)
                    scaleY(1);
    }
}
@keyframes squishbot{
    0%{
        transform: translateX(-70px)
                    translateY(0px)
                    scaleY(1);
    }
    10%{
        transform: translateX(-70px)
                    translateY(0px)
                    scaleY(1);
    }
    30%{
        transform: translateX(-35px)
                    translateY(20px)
                    scaleY(0.25);
    }
    60%{
        transform: translateX(35px)
                    translateY(20px)
                    scaleY(0.25);
    }
    90%{
        transform: translateX(70px)
                    translateY(0px)
                    scaleY(1);
    }
    100%{
        transform: translateX(70px)
                    translateY(0px)
                    scaleY(1);
    }
}
section.boxfill{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1c7512;
}
section.boxfill .box{
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    animation:2s linear 0.25s infinite rotate;
}
section.boxfill .filler{
    background-color: #fff;
    width: 100%;
    height: 100%;
    animation:1s linear infinite alternate filler;
}
@keyframes filler{
    0%{
        height: 0%;
    }
    25%{
        height: 0%;
    }
    75%{
        height: 100%;
    }
    100%{
        height: 100%;
    }
}
@keyframes rotate{
    0%{
        transform: rotateZ(0deg);
    }
    25%{
        transform: rotateZ(0deg);
    }
    50%{
        transform: rotateZ(180deg);
    }
    75%{
        transform: rotateZ(180deg);
    }
    100%{
        transform: rotateZ(360deg)
    }
}
section.glow-circle{
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.glow-circle .text{
    color: #fff;
    animation: 1s linear infinite alternate text-shade;
}
section.glow-circle .circle{
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    animation: 2.2s linear infinite glow-rotate;
}
@keyframes glow-rotate{
    0%{
        transform: rotate(0deg);
        border-bottom: 4px solid #ff9305;
    }
    25%{
        transform: rotate(90deg);
        border-bottom: 4px solid #05ff0d;
    }
    50%{
        transform: rotate(180deg);
        border-bottom: 4px solid #05d1ff;
    }
    75{
        transform: rotate(270deg);
        border-bottom: 4px solid #ff05ee;
    }
    100%{
        transform: rotate(360deg);
        border-bottom: 4px solid #ff9305;
    }
}
@keyframes text-shade{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}