* {
    margin: 0;
    padding: 0;
    color: #666;
    font-size: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}
html,body {
    height: 100%;
}
#logo {
    height: 50px;
    width: 100%;
    text-align: center;
    float: left;
    background-image: url('../imagenes/aldimesa.academy.png');
    margin-top: 10px;
    background-repeat: no-repeat;
    background-size: 100px;
    background-position: center;
}
#transmisiones {
    display: inline-block;
    width: 100%;
}
#transmisiones .video {
    width: 50%;
    float: left;
    background:#03A9F4;
    position: relative;
    border: 10px solid #fff;
    border-radius: 50px;
}
#transmisiones .video .enlace {
    position: absolute;
    display:inline-block;
    top: 0;
    left: 0;
    background-image: url('../imagenes/play.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}
#transmisiones .video .imagen {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-size: 100;
    background-repeat: no-repeat;
    background-position: right bottom;
    display: none;
}
#transmisiones .video .titulo {
    display: inline-block;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: 1;
    width: 100%;
    font-size: 40px;
    font-weight: 500;
}
#modal {
    display: inline-block;
    width: 90%;
    height: 90%;
    position: fixed;
    left: 5%;
    top: 5%;
    z-index: 2;
}
#modal .tapa {
    background: #0000004a;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#contenido-modal {
    position: relative;
    z-index: 9;
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
#contenido-modal .titulo {
    float: left;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #f4f4f4;
    border-radius: 5px 5px 0 0;
    height: 50px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
}
#contenido-modal .titulo .cerrar {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background-color:#ff5e5e;
    color: #fff;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
    border-radius: 0 5px 0 5px;
    cursor: pointer;
}
#contenido-modal .contenido {
    height: calc(100% - 50px);
}
@media (max-width: 600px) {
    body #transmisiones .video .titulo {
        font-size: 20px;
    }
  }