body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #282c34;
    color: #61dafb;
    font-family: 'Arial', sans-serif;
}

.container {
    text-align: center;
    animation: fadeIn 2s;
}

h1 {
    font-size: 6em;
    letter-spacing: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
