/* Formatação de Texto Página*/

body
{
    background-color: rgba(0,125,204,80%);
    margin-top: 110mm;
}

h1
{
    justify-content: center;
    color: rgba(255,0,0,90%);
    display: flex;
    font-size: 20mm;
}

.Blink
{
    animation: Blink 5s infinite;
}


@keyframes Blink

{
0%
{
    opacity: 1;
}
50%
{
    transform: scale(3,3);
    opacity: 0;
}
51%
{
    transform: scale(0);
    opacity: 0;
}
100%
{
    transform: scale(1,1);
    opacity: 1;
}
}