a
{
    color:rgb(13, 192, 211);
}

body
{
    background-color: rgb(97, 134, 138);
    color:rgb(59, 59, 59);
    font-family: "Sour Gummy", serif;
    line-height: 1.25;
    text-align: center;
}

main
{
    background-color:rgb(248, 230, 239);
    border-color: rgb(235, 171, 196);
    border-radius: 20px;
    border-style: dotted;
    border-width: 5px;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 20px;
    max-width: 95%;
    width: 600px;
}


#cyvonix-logo
{
    max-width: 100%;
    width: 400px;
}

#fake-ad
{   
    animation: blink 0.3s;
    animation-iteration-count: infinite;
    float: right;
}

#skeleton
{
    float: left;
    max-width: 100%;
}

#skeleton-img
{
    width: 200px;
}

#under-construction-div
{
    background-image: url("../img/under-construction.gif");
    height: 40px;
    margin-bottom: 10px;
}


@keyframes blink {
    0% {
        filter: brightness(1);
    }
    25% {
        filter: brightness(1.5);
    }
    100% {
        filter: brightness(1);
    }
}