* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
/*    background: linear-gradient(135deg, #6a11cb, #2575fc); */
    background-image: url('background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    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: 20px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.timer {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.timer div {
    text-align: center;
}

.timer span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
}

.timer p {
    font-size: 1rem;
}

.newsletter {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter input {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    outline: none;
    flex: 1;
    max-width: 300px;
}

.newsletter button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background: #ff4d4d;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.newsletter button:hover {
    background: #ff1a1a;
}