* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background: url("fondointro.png");
    height: 740px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin: auto;
}

.cabecera {
    margin: auto;
}

.cabecera h1 {
    font-size: 300%;
    padding: 15px;
    margin-top: 200px;
}

.portal {
    font-family: 'Advent Pro', sans-serif;
    text-align: center;
    color: #fff;
}

.logo img {
    width: 150px;
    margin-top: 20px;
    padding-left: 20px;
}

.titulo_r h1 {
    text-align: center;
    font-family: 'Advent Pro', sans-serif;
    padding: 5px;
    font-size: 20px;
    color: #fff;
}

#stream {
    margin-top: 450px;
}

footer {
    background: rgb(5, 90, 224);
    background: linear-gradient(0deg, rgba(5, 90, 224, 0.8407738095238095) 0%, rgba(5, 226, 231, 1) 57%, rgba(5, 210, 235, 1) 100%);
    padding-bottom: 100px;
    color: #fff;
    font-family: monospace;
    text-align: center;
}


/*.info {
    background: rgb(168, 4, 4);
    color: #fff;
    padding: 10px;
    text-align: right;
    font-family: serif;
    letter-spacing: 1px;
    font-size: 12px;
}
*/

.loguito {
    width: 20px;
}

.tituloprogramacion{
    text-align: center;
margin-top: 20px;
}
.programacion {
    width: 100%;
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

h1 {
    font-family: 'Advent Pro', sans-serif;
    text-align: center;
    font-size: 3em;
}

.bloque img {
    width: 100%;
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 15px;
}

.wsp {
    background: rgb(5, 90, 224);
    background: linear-gradient(0deg, rgba(5, 90, 224, 0.8407738095238095) 0%, rgba(5, 226, 231, 1) 57%, rgba(5, 210, 235, 1) 100%);
    border: 1px solid #fff;
    position: fixed;
    z-index: 99;
    border-radius: 50%;
    bottom: 100px;
    right: 25px;
    padding: 15px;
    transition: ease 0.3s;
    animation: efecto 1s infinite;
}

.boton {
    width: 30px;
    transition: ease 1s;
}

.boton:hover {
    width: 60px;
    transition: ease 1s;
}

.programacion h1 {
    font-family: 'Advent Pro', sans-serif;
    text-align: center;
    font-size: 2em;
}

.bloque img {
    width: 100%;
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}

@keyframes efecto {
    0% {
        box-shadow: 0 0 0 0 rgb(165, 165, 172);
    }
    100% {
        box-shadow: 0 0 0 25px rgb(0, 0, 0, 0);
    }
}

.reproductor {
    width: 50%;
    margin: auto;
    justify-content: center;
}

@media screen and (max-width:600px) {
    .programacion {
        padding-top: 5px;
        display: block;
    }
    h1 {
        font-family: 'Advent Pro', sans-serif;
        text-align: center;
        font-size: 2em;
    }
    .programacion {
        width: 100%;
        padding-top: 20px;
        display: block;
    }
}