*{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}
body {
    background: #ffc20e;
    font-family:monospace;
    font-size: 16px;
}

.contenedor{
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    }
 /*----------------Head------------------*/  
body {
    background: url('../img/rss_atom.png')#ffc20e;
    background-size: cover; /*hace que la imagen ocupe todo el fondo*/
    background-position: center;
    position: relative;
 }

 body::before {
   content: '';
   height: 100%;
   width: 100%;
   position: absolute;
   background: rgba(255, 255, 255, 0.5);
   z-index: -1; /*hace que las letras esten por delante del fondo*/
}
 header .menu{
    margin: 40px 0;
    text-align: right;
 }
 header .menu a{
    margin:  0 20px;
    color: #333;
    padding-bottom: 9px;
    display: inline-block;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    font-weight: 900;
    font-size: 30px;
 }
 header .menu a:hover {
    border-bottom: 2px solid #333;
 }
 header .contenedor-texto {
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 120px; /*el ancho de texto inicial*/
 }
 header .contenedor-texto .texto { /*crea el marco y centra el texto inicia*/
    border: 2px solid rgba(33, 22, 54);
    border-radius: 3px;
    font-display: inline-block;
    text-align: center;
    padding: 10px 10px;
 }
 header .contenedor-texto .texto h1,
 header .contenedor-texto .texto h2{ /*define el formato del texto inicial*/
    color: #211636;
    font-weight: 600;
    margin: 10px;
 }
 header .contenedor-texto .texto .nombre {/*define el formato del texto inicial*/
    margin-bottom: 10px;
    font-size: 50px;
    line-height: 50px;
 }
 header .contenedor-texto .texto .profesion{/*define el formato del texto inicial*/
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 25px;
 } 
 /*---------------------MAIN------------------------------*/
 .main .comtenedor{
   overflow: visible;

 }

 .main .acerca-de {
    text-align: left;
 }
 .main .acerca-de .foto{
   display: flex;
   align-items: center;
   gap: 50px;

 }
 .main .acerca-de .foto img{
    vertical-align: top;
    border-radius: 70%;
    border: 5px solid rgba(33, 22, 54,0.2);
    margin-bottom: 10px;
 }
.main .acerca-de .titulo {
   color: #070707;
   font-weight: 600;
   font-size: 1em;
   line-height: 30px;
   width: 80%;
 }
a{
   text-decoration: none;
}
/*-----------CANALES de NOTICIAS-------*/
.canales {
   padding-bottom: 20px;
   width: 180px;

}

.canales > a {
   display: flex;
   align-items: center;
   gap: 50px;
}

.canales > div > h3 {
   margin-left: auto;
}
/*-----------FOOTER------------------*/
footer .redes-sociales {
   background: #1e2b38;
   padding: 60px 0;
}

footer .redes-sociales .contenedor {
   display: flex;
   justify-content: center;
}

.contacto .contenedor {
   flex-direction: column;
}

footer .redes-sociales a {
   color: #fff;
   text-align: center;
   width: 100px;
   display: block;
   padding: 15px 0;
   border-radius: 3px;
   font-size: 30px;
   margin: 0 20px;
}

footer .redes-sociales .facebook:hover {
   background: #1877f2;
}

footer .redes-sociales .linkedin:hover {
   background: #0a66c2;
}

