:root{
    --naranja: #ec6f07;
    --negro: #222;
    --blanco: #fafafa;
    --verde: #62bf29;
    --azul: #80bde9;
    --amarillo: #edc300;

}
h1{
    font-size: 4em;
    text-align: center;
}
h2{
    font-size: 3em;
    text-align: center;
}
p{
    font-size: 1.5em;
}
*{
    margin: 0;
    padding: 0;
    font-size: 10px;
}
/****************header***************/
header{
    width: 100%;
    height: 20vh;
    background-color: var(--naranja);
    display: grid;
    grid-template-columns: 20% 80%;
    grid-template-rows: 1fr;
}
header h1{
    width: 100%;
    overflow: hidden;
    padding: 2%;
}
header h1 a{
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
header h1 a img{
    width: 95%;
    transition: all ease 0.5s;
}
header h1 a img:hover{
    width: 100%;
    transition: all ease 0.5s;
}

header nav ul{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style: none;
}
header nav ul li{
    padding-left: 3%;
    padding-right: 2%;
}
header nav ul li a {
    color: var(--negro);
    text-decoration: none;
    font-size: 2em;
    transition: all ease 0.5s;
}

header nav ul li a:hover{
    color:var(--blanco);
    font-size: 2.1em;
    transition: all ease 0.5s;
}


/*************Portada**************/
.cabecera {
    width: 100%;
    height: 80vh;
}

.cabecera div{
    height: 100%;
    width: 100%;
    background:url(Portada.jpg);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.titulow{
    font-size: 10em;
    color: var(--blanco);
    font-weight: 400;
    text-align: center;
}
.subtitulow{
    font-size: 3em;
    color: var(--blanco);
    font-weight: 400;
}

/*******GRID***********/
.enlaceZoom{
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all ease 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.enlaceZoom:hover{
    transform: scale(1.1);
    transition:  all ease 0.5s;
}
.grid2{
    width: 100%;
    height: 50vh;
    display: grid;
    grid-template-columns: 50% 50%; 
    overflow: hidden;
}
.gridContent{
    background: var(--naranja);
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.titularidad .gridContent{ background: var(--naranja); }
.programacion .gridContent{ background: var(--verde);}
.cobertura .gridContent{ background: var(--azul);}
.transmision .gridContent{ background: var(--amarillo);}

.gridContent a .subtitulow{
    width: 80%;
    text-align: center;
    font-weight: 400;
}
.gridContent a .descripcion{
    width: 80%;
    color: var(--blanco);
    font-size: 1.5em;
    text-align: center;
}

.grid2 div img{
    width: 100%;    
}


/**************FOOTER****************/

footer{
    width: 100%;
    height: 10vh;
    background-color: var(--negro);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blanco);
}
footer p{
    font-size: 1.5em;
}

/***PARTICIPANTES***/

.cabeceraParticipantes div{
    background: url(participantes.jpg);
}

/*****Paginas*******/
.cuerpo{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.cuerpo .warp{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.cuerpo .warp *{
    padding-top: 1em;
    padding-bottom: 1em;
}

/***Participantes*****/

.contenidoParticipantes{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    overflow: hidden;
    height: 70vh;
}
.contenidoParticipantes div{
    background-color: black;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center ;
}
.contenidoParticipantes div img{
    width: 100%;
}
.contenidoParticipantes div p{
    padding-right: 1em;
    transition: all ease 0.5s;
    text-align: center;
    font-size: 2em;
}


.contenidoParticipantes div:hover > p{
    color: white;
    transition: all ease 0.5s;
}

