/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1500x1000') no-repeat center center fixed;
    background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    color: white;
    z-index: 100;
}

h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
}

.email-signup {
    display: flex;
    justify-content: center;
    align-items: center;
}

input[type="email"] {
    padding: 15px;
    width: 250px;
    border: none;
    border-radius: 25px;
    margin-right: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.4);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

input[type="email"]:focus {
    outline: none;
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.6);
}

button {
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    background-color: #FFD700;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

button:hover {
    background-color: #F1C40F;
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    p {
        font-size: 16px;
    }

    input[type="email"] {
        width: 200px;
    }

    button {
        font-size: 14px;
    }
}
