body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(45deg,#fd7e14, #8c00ff, #0088FF, #917AEB,#0dcaf0, #FFA500, #FF00FF, #a52834,#ffca2c );
    background-size: 400% 400%;
    animation: gradientAnimation 5s ease infinite;
    font-family: Nunito, sans-serif;
    text-align: center;
}
h3 , p {
    color: white;
}
ul>li {
    list-style-type: circle;
}


@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.logo {
    width: 150px;
    height: auto;
}

.slogan {
    font-size: 1.25em;
    margin: 10px 0;
    color: white;
}
.dolar {
    font-size: 3em;
    margin: 10px 0;
    color: white;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    width: 100%;
    padding: 1vw;
    box-sizing: border-box;
}

.other_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10vw;
}

.number-box {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 6vw;
    height: 10vw;
    border: 1px solid #fff;
    border-radius: 10px;
    position: relative;
}

.number {
    font-size: 6vw;
    font-weight: 700;
    padding: 1vw 0;
}

.download-buttons {
    margin: 1em 0;
}
.bn46 {
    width: 150px;
    height: 50px;
}
.bn45 {
    width: 170px;
    height: 50px;
}

.footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5em;
    color: white;
}

.footer a {
    color: white;
    text-decoration: none;
    font-size: 1em;
}

@media (max-width: 768px) {
    .number-box {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        width: 14vw;
        height: 20vw;
        border: 1px solid #fff;
        border-radius: 4px;
        position: relative;
    }
}