body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

input[type=text] {
    padding: 10px;
    font-size: 1rem;
    margin: 10px 0;
    width: 300px;
    max-width: 80%;
    border-radius: 5px;
    border: none;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    background-color: #e50914;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #b0060f;
}
