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

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Sniglet', sans-serif;
    background-color: #f5ede0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

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

.brand-name {
    font-size: 8vw;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

.coming-soon-text {
    font-size: 2.5vw;
    color: #333333;
    letter-spacing: 0.15em;
    font-weight: 400;
    animation: fadeInUp 1s ease-in-out 0.3s both;
    text-transform: uppercase;
}

.description {
    font-size: 1.5rem;
    color: #666666;
    margin: 20px 0;
    animation: fadeInUp 1s ease-in-out 0.6s both;
}

.newsletter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    animation: fadeInUp 1s ease-in-out 0.9s both;
}

.newsletter input {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    font-size: 1.1rem;
    width: 250px;
    outline: none;
}

.newsletter button {
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

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

.thank-you {
    margin-top: 30px;
    text-align: center;
}

.thank-you p {
    font-size: 1.2rem;
    color: #000000;
    font-weight: bold;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design for tablets and smaller screens */
@media (max-width: 768px) {
    .brand-name {
        font-size: 12vw;
    }

    .coming-soon-text {
        font-size: 3.5vw;
    }

    .newsletter input {
        width: 200px;
    }
}

/* Responsive design for mobile phones */
@media (max-width: 480px) {
    .brand-name {
        font-size: 14vw;
        margin-bottom: 15px;
    }

    .coming-soon-text {
        font-size: 4vw;
    }

    .container {
        padding: 15px;
    }

    .newsletter {
        flex-direction: column;
    }

    .newsletter input {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .newsletter button {
        width: 100%;
        border-radius: 5px;
    }
}
