body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #0074D9;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #329ccd;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.5em;
}

.footer {
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    position: relative;
    bottom: 0;
    width: 100%;
}

.container {
    text-align: center;
}

.animated-text {
    font-size: 4em;
    color: white;
    text-transform: uppercase;
    animation: fadeIn 2s ease-in-out infinite;
}

.linkcontainer {
    display: inline-block;
    margin: 10px;
    padding: 10px;
    background-color: #329ccd;
    color: white;
    text-align: center;
    font-size: 1.5em;
    text-decoration: none;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}
