* {
    padding: 0;
    margin: 0;
}


a {
    font-family: "kaushan script";
    color: rgb(255, 255, 255);
    display: block;
    text-align: center;
    text-align: center;
    margin-top: 7px;
    font-size: 2em;
    background-color: rgba(211, 211, 211, 0.479);
    text-decoration: none;
}

p {
    color: white;
}

img {
    width: 250px;
    height: 215px;
    margin: 0 50px;
    transition: all .5s ease-in-out;
}

.arrows {
    float: right;
}

#start {
    background-image: url("../img/background/fondoToChulo.png");
    background-size: cover;
    width: 1366px;
    height: 637px;
}

#startDemo {
    font-size: 50px;
    color: white;
    background-color: #a82323;
    padding: 10px 40px;
    border-radius: 20px;
    margin-left: 510px;
    margin-top: 280px;
    text-transform: uppercase;
    animation-name: makeBigger;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    transition: all 0.3;
}


#footer {
    text-align: center;
    font-family: 'Kaushan Script', cursive;
    background-color: rgb(11, 97, 50);
    font-size: 1.2em;
    height: 32px;
}

img:hover {
    border-radius: 50%;

    box-shadow: 0px 0px 15px 15px #0716a1;
    transform: rotate(360deg);

}

a:hover {
    background-color: rgba(128, 128, 128, 0.63);
    color: blue;
}

#footer:hover {
    height: 30px;
    border: 1px solid black;
}

#startDemo:hover {
    transform: rotate(180deg);
}

p:hover {
    color: black;

}


@keyframes makeBigger {

    0% {
        background: #a82323;
    }

    25% {
        background: #efb810;
        transform: scale(1.1, 1.1);
    }

    50% {
        background: #a82323;
        transform: scale(1.2, 1.2)
    }

    75% {
        background: #efb810;
        transform: scale(1.1, 1.1)
    }

    100% {
        background: #a82323;
        transform: scale(1, 1)
    }
}