body
{
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: black;
    background-color: white;
    animation: startup 7s ease-out;
}
header
{
    size
    float: left;
    height: 100px;
    width: 100%;
}
main
{
    width: 100%;
    text-align: center;
    height: 300px;
    font-size: 20px;
    float: left;
}
footer
{
    clear: both;
}
table
{
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(55, 55, 55);
    border-radius: 10px;
}
input
{
    text-align: center;
    vertical-align: middle;
    color: white;
    background-color: rgb(55, 55, 55);
    border: 10px;
}
img
{
    animation: spinY 12s linear infinite;
}
@keyframes spinY
{
    from
    {
        transform: rotateY(0deg);
    }
    to
    {
        transform: rotateY(360deg);
    }
}

@keyframes startup
{
    from
    {
        background-color: black;
    }
    to
    {
        background-color: white;
    }
}