body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000000;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('background.jpg') no-repeat center center/cover;
}

.content {
    margin-top: 65vh;
    text-align: center;
    color: #fff;
}

.content h1 {
    font-size: 4em;
    margin-bottom: 0.5em;
}

.content p {
    font-size: 1.5em;
    margin-bottom: 2em;
}

#countdown {
    font-size: 2em;
    margin-bottom: 2em;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
}

.subscribe-form input[type="email"] {
    padding: 0.5em;
    font-size: 1em;
    border: none;
    border-radius: 5px 0 0 5px;
}

.subscribe-form button {
    padding: 0.5em;
    font-size: 1em;
    border: none;
    border-radius: 0 5px 5px 0;
    background-color: #ff6347;
    color: #fff;
    cursor: pointer;
}

.social-media a {
    margin: 0 0.5em;
}

.social-media img {
    width: 32px;
    height: 32px;
}

