* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background-color: #f3e9dd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #8b5e3c;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 420px;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 2px;
}

.sub {
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.soon {
    font-size: 22px;
    margin-bottom: 12px;
}

.line {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.85;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

.countdown div {
    text-align: center;
}

.countdown span {
    font-size: 22px;
    font-weight: 500;
    display: block;
}

.countdown small {
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0.7;
}

.insta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #8b5e3c;
    border: 1.5px solid #8b5e3c;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s ease;
}

.insta:hover {
    background-color: #8b5e3c;
    color: #f3e9dd;
}

.email {
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.8;
}

.fade {
    animation: fadeIn 1.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
