body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    background-image: url('Background.png');
    background-size: cover; /* or 'contain' depending on how you want it to fit */
    background-repeat: no-repeat; /* or 'repeat' if it's a tile */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: white;
    width: 500px;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header a {
    font-size: 24px;
    color: #0077cc;
    text-decoration: none;
}

h1 {
    margin: 20px 0 10px;
    color: #333;
}

.tagline {
    margin-bottom: 20px;
    color: #666;
}

.email-signup {
    margin: 20px 0;
}

input[type="email"] {
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 4px;
    width: calc(100% - 24px);
    margin-bottom: 10px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #005fa3;
}

.submit {
    width: 100%;
    padding: 15px;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.submit:hover {
    background-color: #005fa3;
}

footer p {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}
