html{
    scroll-behavior: smooth;
}
p{
    text-align: justify;
    padding-bottom: 15px;
}
.uno{
    background: linear-gradient(102deg, #165bb4b2 40%, #0559a8b4 60%);
    color: #ffffff;
    font-size: 50px;
    display: inline-block;
    padding: 0.8rem 5rem;
    border-radius: 3rem;
    min-width: 200px;
    text-decoration: none;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .5);
    animation: pulse 1.5s infinite;
}

.fondo{
    background: url("../assets/Candy_bg.png");
    height: 100vh;
    background-size: cover;
    background-position: center;
}
.barra{
    background: rgb(85, 35, 23);
    height: 50px !important;
}

#introduccion, #info, #desarrollo, #resultados{
    font-size: 20px;
    width: 70%;
}
footer{
    color: beige;
    height: 10vh;
    text-align: center;
    padding-top: 25px;
    margin-top: 60px;
}

@media (max-width: 980px) {
    .uno{
        font-size: 30px;
        padding: 0.5rem 1.5rem;
    }
    #introduccion, #info, #desarrollo, #resultados{
        font-size: 20px;
        width: 95%;
    }
    .nav-pills{
        background: rgb(85, 35, 23);
    }
}

@keyframes pulse {
    0% {
        transform: scale(.99);
        box-shadow: 0 0 0 0 rgba(256, 256, 256, .1);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 25px rgba(256, 256, 256, 0);
    }
    100% {
        transform: scale(.99);
        box-shadow: 0 0 0 0 rgba(256, 256, 256, 0);
    }
}