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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo {
    width: 80vw;
    max-width: 100vw;
    height: auto;
    animation: fadeIn 5s ease-in;
}

.tagline {
    margin-top: 0rem;
    font-size: 4rem;
    color: #333;
    animation: fadeIn 10s ease-in;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
