*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
}

.email {
    color: #ffffff;
    margin: auto;
    width: 20%;
    /* border: 3px solid green; */
    padding: 10px;
    position: absolute;
    bottom: 0;
    /* width: 100%; */
    height: 40px;
  
}

.logoline1
{
    position: relative;
    width: 105%;
    height: 50px;
    background: #000;
    transform: skew(-20deg);
}

.logoline1::before
{
    content: '';
    position: absolute;   
    width: 100%;
    height: 100%;
    background: #ff3333;
    transform-origin: left;
    animation: animate 30s linear infinite;
}

.logoline2
{
    position: relative;
    width: 49.5%;
    height: 40px;
    background: #000;
    transform: skew(-20deg);
}

.logoline2::before
{
    content: '';
    position: absolute;   
    width: 100%;
    height: 100%;
    background: #ff3333;
    transform-origin: left;
    animation: animate2 30s linear infinite;
}

.logoline3
{
    position: absolute;
    width: 235px;
    height: 50px;
    background: #000;
    transform: skew(-20deg);
    z-index: 5;
    left: 50px; 
    right: 0;
    margin-left: auto; 
    margin-right: auto; 
    display: grid;
    place-items: center;
}

.bottomline
{
    position: relative;
    width: 105%;
    height: 20px;
    background: #000;  
    transform: skew(-20deg);
}

.bottomline::before
{
    content: '';
    position: absolute;   
    width: 100%;
    height: 100%;
    background: #ffffff;
    transform-origin: right;
    animation: animatebot 30s linear infinite;
}

.bottomline2
{
    position: absolute;
    width: 130px;
    height: 20px;
    background: #000;  
    transform: skew(-20deg);
    z-index: 5;
    left: 150px; 
    right: 0;
    margin-left: auto; 
    margin-right: auto; 
    display: grid;
    place-items: center;
}
@keyframes animate
{
    0%,5%
    {
        transform: scaleX(0);
    }
    10%
    {
        transform: scaleX(1);
        transform-origin: left;
    }
    40.00001%,60%
    {
        transform: scaleX(1);
        transform-origin: right;
    }
    80%,100%
    {
        transform: scaleX(0);
        transform-origin: right;
    }
}

@keyframes animate2
{
    0%,10%
    {
        transform: scaleX(0);
    }
    15%
    {
        transform: scaleX(1);
        transform-origin: left;
    }
    50%,55%
    {
        transform: scaleX(1);
        transform-origin: right;
    }
    90%,100%
    {
        transform: scaleX(0);
        transform-origin: right;
    }
}

@keyframes animatebot
{
    0%,5%
    {
        transform: scaleX(0);
    }
    10%
    {
        transform: scaleX(1);
        transform-origin: right;
    }
    40.00001%,60%
    {
        transform: scaleX(1);
        transform-origin: left;
    }
    80%,100%
    {
        transform: scaleX(0);
        transform-origin: left;
    }
}

.flex-container 
{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 10px;
}

.top-container 
{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    gap: 5px;
}

.bottom-container 
{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    gap: 5px;
}