@keyframes animationBar {
    0% {

        transform: scale(1, 1);
    }
    20% {
        transform: scale(1, 1);
    }
    30% {
        transform: scale(0, 1);
    }
    70% {
        transform: scale(0, 1);
    }
    80% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(1, 1);
    }
}

.main-animation {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100vh;
}

.main-animation__logo {
    width: 341px;
}

.main-animation__bar {
    animation: animationBar 10s linear infinite;
    background-color: #009DAC;
    bottom: 0;
    display: block;
    height: 80px;
    margin: auto 0;
    position: absolute;
    transform-origin: right center;
    top: 2px;
    width: 100%;
}