body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #000;
    color: #fff;
}

.container {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.image-section {
    flex: 1;
    text-align: center;
}

.image-section img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.text-section {
    flex: 1;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

.email-form {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.email-form input {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
}

.email-form button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #e94560;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.email-form button:hover {
    background-color: #d13450;
}

.signup-text {
    font-size: 14px;
    color: #ccc;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

footer p {
    font-size: 14px;
    color: #ccc;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #e94560;
}