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

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

.container {
    text-align: center;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInLogo 4s forwards 1s; /* 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;
}

footer {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 0.8em;
    color: #666;
}