@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
    }

@keyframes blink { 
     0%{ 
     opacity: 0; 
    } 
    100%{ 
      opacity: 0,9; 
    } 
    }

body {
    background-color: #000000;
}

h1 {
    animation: fadeIn 5s;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 45px;
    height: 200px;
    left: 0;
    line-height: 200px;
    margin-top: -100px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

h2 {
    animation : blink 1s infinite;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: px;
    height: 0px;
    left: 0;
    line-height: 200px;
    margin-top: 100px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

.links {
    animation: fadeIn 8s;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    height: 200px;
    left: 0;
    line-height: 200px;
    margin-top: -50px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}

a {
    text-decoration: none;
    color: #FFFFFF;
}

a:hover {
    color: red;
    text-decoration: underline;
}

footer {
    animation: fadeIn 12s;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #ff0000;
    height: 200px;
    left: 0;
    line-height: 200px;
    margin-top: 165px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}