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

body {
    font-family: 'Montserrat', sans-serif;
    background: #1c1c1e;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

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

.logo h1 {
    font-size: 3rem;
    color: #ff6b6b;
}

.content h2 {
    font-size: 2rem;
    margin: 10px 0;
}

.content p {
    font-size: 1.1rem;
    color: #d3d3d3;
    margin-bottom: 30px;
}

#countdown {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.countdown-element {
    text-align: center;
}

.countdown-element span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b6b;
}

.countdown-element p {
    font-size: 1rem;
}

.newsletter {
    margin-top: 20px;
}

.newsletter input {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    width: 70%;
}

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

.newsletter button:hover {
    background-color: #e55a5a;
}
