/*Estilo por defecto del body*/
body{
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
    background-color: black;
    background-repeat: no-repeat;
}   
/*Estilo de la pagina principal, no muy complejo*/
h2{
    text-align: center;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
}

p{
    font-size: 20px;
    text-align: justify;
}
section{
    background:linear-gradient(to bottom, rgb(166, 166, 3), orange);
    border: 2px solid white;
    border-radius: 10px;
    padding: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2em;
    margin: 2em;
}
/*Animacion de clover bailano debajo del primer section*/
.clover{
    background-image: url(../Sprites/CloverBailando.png);
    width: calc(149px / 6);
    height: 30px;
    animation: Baile 1s steps(6) infinite;
    margin:0 auto;
    }

    @keyframes Baile {
        from { background-position: 0}
        to { background-position: -149px 0; }
    }

    
    