* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f6f4f0; /* Off-white background */
    color: #666666;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container {
    text-align: center;
}

.logo {
    width: 400px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInLogo 3s forwards 0.5s; /* Fade-in effect for logo */
}

.text {
    opacity: 0;
    animation: fadeInText 3s forwards; /* Fade-in effect for text with delay */
}

@keyframes fadeInLogo {
    to {
        opacity: 1;
    }
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

.text p {
    margin: 10px 0;
    font-size: 1.2em;
    opacity: 0.8;
}

.site-footer {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    padding: 0 20px;
    font-size: 0.8em;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.site-footer .footer-sep {
    display: none;
}

@media (min-width: 769px) {
    .site-footer {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }
    
    .site-footer .footer-sep {
        display: inline;
    }
}
