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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #e4ecf2);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

.container {
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

.logo {
    max-width: 600px;
    width: 100%;
    margin-bottom: 30px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
