
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


header {
    position: absolute;
    top: 100px; 
    width: 100%;
    text-align: center;
}

.header-logo img {
    width: 400px; 
}


body {
    font-family: Arial, sans-serif;
    background: url('bg1.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}



.coming-soon-section h2 {
    letter-spacing: 10px;
    font-family: Cardo;
    font-weight: 200;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    font-size: 3rem;
    margin-bottom: 10px;
}

.coming-soon-section h3 {
    letter-spacing: 3px;
    font-family: Cardo;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 10px;
}


.newsletter-container {
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 300px;
}



.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter input[type="email"] {
    padding: 10px;
    font-size: 1rem;
    text-align: center;
    border: 1px solid #ffffff;
    border-radius: 5px;
    outline: none;
}

.newsletter button {
    padding: 10px;
    font-size: 1rem;
    color: #fff;
    background-color: #353950;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter button:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 400px) {

    header {
        position: absolute;
        top: 80px; 
        width: 100%;
        text-align: center;
        
    }
    
    .header-logo img {
        width: 300px;
    }

    .coming-soon-section h2 {
        font-size: 2rem;
    }

    .coming-soon-section h3 {
        font-size: 1rem;
    }

    .newsletter-container {
        padding: 15px;
        width: 100%;
    }

    .newsletter input[type="email"] {
        font-size: 0.9rem;
        padding: 8px;
    }

    .newsletter button {
        font-size: 0.9rem;
        padding: 8px;
    }
}