/* styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom right, #0f2027, #203a43, #2c5364);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.content p {
    margin: 15px 0;
}

.subscribe-form {
    margin-top: 20px;
}

.subscribe-form input {
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
    outline: none;
    width: 70%;
}

.subscribe-form button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #4caf50;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #45a049;
}
