/* Reset some basic elements */
html, body, div, h1, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.container {
    width: 80%; /* Adjust as needed */
    max-width: 800px; /* Adjust as needed */
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 70%; /* Size of the logo */
    height: auto;
    margin-bottom: 2rem; /* Space between logo and tagline */
    opacity: 0;
    animation: fadeInUp 0.8s 0.2s forwards;
}

.tagline {
    margin-bottom: 8rem; /* Space between tagline and information */
}

.tagline h1 {
    font-size: 2em; /* Adjust the size of your tagline */
    margin-bottom: 1rem; /* Space between the lines of the tagline */
    font-weight: bold;
    opacity: 0;
    animation: fadeInUp 0.8s 0.4s forwards;
}

.information p {
    font-size: 1em;
    margin: 1rem 0; /* Space between paragraphs */
    font-weight: bold;
    opacity: 0;
    animation: fadeInUp 0.8s 0.6s forwards;
}

a {
    color: #f25425;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 1em;
    z-index: 1;
    padding: 1rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s 0.8s forwards;
}

footer p {
    margin: 1rem 0;
}

footer a {
    color: #aaa;
    text-decoration: none;
}

footer a:hover {
    text-decoration: none;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}