/*Código armado por La Foca Loca S.A. No modificar*/
body {
    font-family: Arial, sans-serif;
    width: 940px;
    margin: 5% auto;
    min-height: 100%;
    background-image: url(../images/adventure.jpg);
}

ul {
    padding-left: 0;
    list-style: none;
}

li {
    padding: 5px 0;
    animation: fadein 5s;
}

li::before {
    content: "• ";
    color: #EC6778;
}

.col-40 h1 {
    font-size: 20px;
    color: #3366ff;
}

.contenedor {
    width: 800px;
    display: flex;
    flex-flow: row wrap;
}

.col-40,
.col-60 {
    display: table-cell;
    margin: 0;
    vertical-align: top;
    height: 600px;
    box-sizing: border-box;
    border: ridge 3px;
}

.col-40 {
    background: #FFF;
    padding: 10px;
    color: #000;
    width: 25%;
}

#objetivo img {
    height: 140px;
    width: 140px;
}

.col-60 {
    background: #E84A5F;
    width: 75%;
}

#juego {
    display: flex;
    flex-flow: row wrap;
}

.estilado {
    height: 198px;
    width: 198px;
    margin: auto;
}

#juego img {
    height: 100%;
    width: 100%;
}

#flecha {
    font-size: 60px;
}

.texto-centrado {
    text-align: center;
}

#juego div {
    text-align: center;
    animation: fadein 2s;
}

#footer {
    height: 50px;
    width: 100%;
    background-color: #fff;
    margin-top: 5px;
    border: ridge 5px;
    padding-left: 10px;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
