/* styles.css */

/* General page styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Container for the content */
.container {
    text-align: center;
}

/* Heading styling */
.heading {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
}

/* Subheading styling */
.subheading {
    font-size: 24px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* Email sign-up form styling */
.email-signup {
    margin-top: 20px;
}

/* Input field styling */
input[type="email"] {
    padding: 10px;
    font-size: 16px;
    width: 250px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Button styling */
button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Button hover effect */
button:hover {
    background-color: #2980b9;
}
