body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #33ccff;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
}

main {
    position: relative;
    height: 100vh;
}

.background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

form {
    display: flex;
    justify-content: center;
}

input[type="email"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    background-color: #33ccff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background-color: #ddd;
    padding: 10px;
    text-align: center;
}

