/* style.css */

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(to right, #ece9e6, #ffffff);
    color: #333;
}

.container {
    text-align: center;
    padding-top: 15%;
}

h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

p {
    font-size: 24px;
    margin-bottom: 40px;
}

.subscribe {
    display: flex;
    justify-content: center;
}

.subscribe input[type="email"] {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 300px;
}

.subscribe button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.subscribe button:hover {
    background-color: #555;
}
