﻿.ganador .imagen{
    position: absolute;
    overflow: hidden;
    top:0;
    right: 0;
    left: 0;
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
    z-index: 1;
    -webkit-filter: blur(2px);
    filter: blur(2px);
}
.ganador .datos {
    position: relative;
    z-index: 10;
    color: #2a6496;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    padding: 10px 0 10px 0;
    margin: 10px 0 10px 0;
    text-shadow: 3px 4px 6px #2a6496;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}
@-webkit-keyframes movimiento-diagonal {
    from {
        font-size: 30px;
    }

    to {
        font-size: 34px;
        color: orange;
    }
}
.ganador .contenedor-titulo{
    position: relative;
    height: 43px;
    z-index: 10;
}
.ganador .titulo {
    text-shadow: 2px 2px 8px #000;
    margin: 10px 0 10px;
    text-align: center;
    -webkit-animation-name: movimiento-diagonal;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate; /*para que vuelva a su posicion inicial */
    color: #fff;
    font-size: 30px;
    position: relative;
    padding: 2px;
    line-height: 34px;
}

@media (max-width: 1184px) and (min-width:768px){
    .ganador .contenedor-titulo {
        height: 72px;
    }
}

@media screen and (max-width:442px){
    .ganador .contenedor-titulo {
        height: 72px;
    }
}