body {
    background: linear-gradient(-45deg, #00c0c0, #017dd1, #005899, #017777);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    padding-bottom: 2.5rem;
    position: relative;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 4.5em;
    text-align: center;
    line-height: 1.2;
    color: #00c0c0;
    margin-top: 0px;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 4em;
    text-align: center;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 0px;
}

p {
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    font-size: 2em;
}

a:link {
    text-decoration: none;
    font-weight: bold;
    color: currentColor;
}

a:visited {
    text-decoration: none;
    font-weight: bold;
    color: currentColor;
}

a:hover {
    text-decoration: underline;
    font-weight: bold;
    color: currentColor;
}

a:active {
    text-decoration: underline;
    font-weight: bold;
    color: currentColor;
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5rem;
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    color: white;
}