* {
    font-family: "Quicksand", sans-serif;
}

body {
    background-color: #101828;
    background-image: url(/assets/img/confetes.svg);
}

.bg-espiral {
    background-image: url(/assets/img/espiral.svg);
    background-position: center;
}

.logo {
    color: #fa6615;
}

.btn-success {
    background-color: #1a2953;
    border: 1px solid #28509b;
}

.btn-success:hover {
    background-color: #1a2953;
    border: 1px solid #28509b;
}

.card {
    background-color: #182137 !important;
    border: 1px solid #2a3849 !important;
    border-radius: 1em !important;
}

#countdown {
    position: absolute;
    font-size: 6em;
    font-weight: bold;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    background-color: #1a2953;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1.1);
    }
}

.animation {
    animation: alerta 1.5s infinite;
}

.botao {
    box-shadow: 0 0 0 0 #1a2953;
    font-size: 30px;
    display: inline-block;
    text-align: center;
    padding: 10px 50px;
    text-decoration: none;
    transition: background, padding 500ms ease-in-out;
}

@keyframes alerta {
    0% {
        transform: scale();
    }

    70% {
        transform: scale();
        box-shadow: 0 0 0 50px rgba(69, 152, 27, 0);
    }

    100% {
        transform: scale();
        box-shadow: 0 0 0 0 rgba(69, 152, 27, 0);
    }
}