body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: calc(100vh - 80px);
    /* Menos o tamanho da navbar e do footer */
}

.coming-soon-text {
    font-size: 3rem;
    font-weight: bold;
    color: #343a40;
    letter-spacing: 5px;
    animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
    border-right: 4px solid #343a40;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.countdown {
    font-size: 1.5rem;
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.countdown div {
    background: rgba(52, 58, 64, 0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    color: #343a40;
}

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