body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(to bottom, #f5f5f5, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}

.container {
    animation: fadeIn 2s ease-in;
}

h1 {
    font-size: 48px;
    color: #333333;
    font-weight: 600;
    letter-spacing: 1px;
}

p {
    font-size: 18px;
    color: #666666;
    animation: fadeIn 4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}