body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: url('images/floral-background.avif') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    padding: 50px;
}

h1 {
    font-size: 2.5em;
    color: #b52e5a;
}
p {
    font-size: 1.2em;
}
.email-form {
    margin-top: 20px;
}
input[type="email"] {
    padding: 10px;
    font-size: 1em;
    width: 250px;
    border: 1px solid #aaa;
    border-radius: 5px;
}
button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #b52e5a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #8f2248;
}
.success-message {
    display: none;
    color: #008000;
    margin-top: 15px;
    font-size: 1.2em;
}
