/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #141414, #000);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
}

.header .logo {
    width: 150px;
    margin-bottom: 30px;
}

.main-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #e50914;
}

.main-content .description {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.main-content .launch-date {
    font-size: 1.2rem;
    color: #aaa;
}

.footer {
    margin-top: 50px;
    font-size: 0.9rem;
    color: #555;
}
