main
{
    padding: 20px;
    padding-top: 100px;
    height: 95vh;
}

main video
{
    width: 100%;
}

main .container
{
    margin: auto;
    max-width: 450px;
    min-height: 79vh;
}

#containerHeader
{
    padding: 15px 15px 20px;
    width: 100%;
    min-height: 320px;
    text-align: center;
    margin: auto;
}

#emailList
{
    padding: 15px 15px 20px;
    width: 100%;
    min-height: 320px;
    margin: auto;
    
}

#bannerPic
{
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

#bannerPic img
{
    max-width: 100%;
    border-radius: 50%;
    border: 1px solid #f2f2f2;
    height: auto;
    object-fit: cover;
}

#buttonContainer
{
    text-align: center;
    margin: 18px 0;
}

#buttonContainer img
{
    width: 100%;
    max-width: 40px;
    border-radius: 50%;
}

#buttonContainer a
{
    text-decoration: none;
    color: white;
}

#brandLogo
{
    width: 100%;
    margin: 0 auto;
}

#brandLogo img
{
    width: 200px;
    max-width: 100%;

}

.btn
{
    cursor: pointer;
    margin-bottom: 15px; 
}

.rounded
{
    margin: 8px 0;
    border-top: 5px solid #3c66a7;
    width: 100%;
    border-radius: 5px;
}

#signature
{
    display: none;
}

@keyframes wiggle 
{
    0%
    {
        transform: rotate(1deg);
    }

    2%
    {
        transform: rotate(-1deg);
    }
    4%
    {
        transform: rotate(1deg);
    }

    6%
    {
        transform: rotate(-1deg);
    }

    8%
    {
        transform: rotate(1deg);
    }

    10%
    {
        transform: rotate(-1deg);
    }

    12%
    {
        transform: rotate(1deg);
    }

    14%
    {
        transform: rotate(-1deg);
    }
    16%
    {
        transform: rotate(1deg);
    }

    18%
    {
        transform: rotate(-1deg);
    }

    20%
    {
        transform: rotate(1deg);
    }

    22%
    {
        transform: rotate(0deg);
    }

    50%
    {
        animation-play-state: paused;
        
    }
}

#buttonContainer .animate
{
    animation-iteration-count: infinite;
    animation-name: wiggle;
    animation-duration: 3s;
    animation-play-state: running;
}

