@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Poppins:wght@300;400;600;700&display=swap');


*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Mulish', sans-serif;
    font-family: 'Poppins', sans-serif;
}

h1,h2,h3,h4,h5,h6,p,a,i{
    color: white;
}

body{
    width: 100%;
    background-color: #ffffff;
}


header{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
ul{
    list-style: none;
}

nav{
    background: rgb(188,0,255);
    background: linear-gradient(180deg, rgba(188,0,255,1) 0%, rgba(0,0,0,1) 100%);
}

nav, ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.frecuencia{
    display: flex;
}

.frecuencia p{
    font-size: 2.5em;
    margin-bottom: 5px;
}

.frecuencia .mhz{
    font-size: 1em;
}

.red{
    align-items: center;
    width: 15%;
    padding: 20px;
    font-size: 1.3em;
}

.logosinletra{
    width: 3em;
    height: 3em;
    margin: 20px 5px 20px 20px;
}

.radio-logo{
    width: 11em;
    height: 3em;
}

header div:not(.logo){
    height: 100px;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: end;
}

.logo{
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.logo img{
    width: 700px;
    height: 200px;
}

header{
    background-color: black;
}

header .reproductor{
    display: flex;
    flex-direction: row-reverse;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

header div iframe{
    display: flex;
    color: red;
}

.noticia-titulo{
    color: black;
    text-align: center;
    font-size: 4.5em;
}


/*------------------------MAIN--------------------------*/
main{
    width: 84%;
    margin-right: auto;
    margin-left: auto;
}

main section{
    margin-bottom: 50px;
}

main section:not(.instagram,.banner0,.banner1){
    height: 720px;
    box-shadow: 1px 1px 10px black;
}

.banner0, .banner1{
    height: 100px;
    background-color: rgb(255, 255, 255);
}

/*--------------------------Youtube-----------------*/
.youtube{
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube div{
    width:100%;
    height: 100%;
}   

.youtube div iframe{
    width: 100%;
    height: 100%;
}  

/*-------------------Twtich---------------------------*/
/*para que no se vean los bordes negro, 
habria que acomodar el ancho y largo del div
a 1280x720*/
.twitch{
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.twitch div{
    width:100%;
    height: 100%;
}   

.twitch div iframe{
    width: 100%;
    height: 100%;
}   


/*------------------------FOOTER--------------------------*/
footer{
    margin-top: 100px;
    height: 150px;
    background-color: rgb(49, 49, 49);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

footer div{
    display: flex;
    flex-direction: column;
    width: 50%;
}

footer div h3{
    font-size: 1.5em;
}

.publicidad{
    display: block;
}

.publicidad{
    display: flex;
    justify-content: space-around;
}

.copyright{
    margin-top: auto;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

.copyright ul{
    display: flex;
    justify-content: center;
}

.copyright ul li{
    text-align: center;
}

/*-----------------------Celular-------------*/
@media screen and (max-width: 450px) {
    main{
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        box-shadow: 0px 0px 0px rgb(255, 255, 255);
    }
    main .instagram{
        margin-right: auto;
        margin-left: auto;
    }
    main section:not(.instagram,.banner0,.banner1){
        height: 480px;
        box-shadow: 1px 1px 10px black;
    }
    .noticia-titulo{
        font-size: 2em;
    }
    .logo img{
        width: 20em;
        height: 5.5em;
    }
    .logosinletra{
        width: 2em;
        height: 2em;
        margin: 20px 5px 20px 20px;
    }
    .frecuencia p{
        font-size: 1.5em;
        margin-bottom: 5px;
    }
    .red {
        align-items: center;
        width: 40%;
        padding: 20px;
        font-size: 1em;
    }
    footer div{
        display: flex;
        flex-direction: column;
        width: 80%;
    }
    footer div ul{
        display: flex;
        flex-direction: column;
    }
    footer div h3{
        font-size: 0.9em;
    }
    footer div a{
        font-size: 0.7em;
    }
    footer div ul p{
        font-size: 0.6em;
    }
}


/*HECHO POR FULANO&ZUTANO*/