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

body {
    font-family: 'Orbitron', sans-serif;
    background-image: url('https://www.publicdomainpictures.net/pictures/580000/velka/planeten-weltraum-universum-1706618421wua.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    text-align: center;
}

/* Container styling */
.coming-soon-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 50px;
    border-radius: 15px;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* Heading and paragraph styling */
h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    margin: 10px 0;
}

.launch-date {
    font-style: italic;
    color: #ddd;
}

/* Form styling */
form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 20px;
}

button {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

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