* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background-image: url("img/bg.png");
    background-size: cover;
    background-position: center;
    color: #fff;
}


.container {
    text-align: center;
    padding: 20px;
    max-width: 500px;
    width: 90%;
}


h1 {
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: 3em;
    font-weight: 100;
    margin-bottom: 32px;
}

h2 {
    font-weight: 100;
    margin-bottom: 16px;
}


p {
    font-size: 1em;
    margin-bottom: 16px;
    color: #fff;
    opacity: 0.8;
}

a {
    opacity: 0.8;
}

.email-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.email-form input {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #fff;
    border-radius: 5px;
    width: 70%;
}

.email-form button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.email-form button:hover {
    background-color: #0056b3;
}

footer p {
    font-size: 0.9em;
    color: #fff;
}

@media (max-width: 600px) {
    .email-form {
        flex-direction: column;
    }

    .email-form input {
        width: 100%;
    }

    .email-form button {
        width: 100%;
    }
}
