*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  font-family: arial;
}

.contenedor{
  width: 100%;
  max-width: 1170px;
  margin: auto;
}

/*cabezera*/
header{
  width: 100%;
  height: 200px;
  background-color: black;
}

.logo{
  padding: 20px 0;
}

.logo img{
  width: 350px;
  display: block;
  margin: auto;
}

.menu{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  justify-content: space-around;
  max-width: 800px;
  margin: auto;

}

.menu a{
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-size: 18px;
}

.menu a:hover{
  color: gray;
}
/*fin de cabezera*/

/*banner principal*/
.banner{
  width: 100%;
  height: 550px;
  background-image: url(../img/Opera.jpeg);
  background-position: center;
  background-size: cover;
}

.llamada-accion{
  text-align: center;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;

  height: 100%;
}

.llamada-accion h1{
  font-size: 40px;
  color: white;
  width: 100%;
}
/*fin banner principal*/

/*noticias*/
.noticias{
  padding: 30px 0 ;
}

.noticias > .contenedor{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.opera-prima{
  width: 100%;
  max-width: 570px;
  padding: 15px;
}

.opera-prima img{
  width: 100%;
}

.info{
  text-align: center;
  padding: 15px 0;
  max-width: 570px;
  padding:  30px;
}

.info h2{
  font-size: 25px;
  color: black;
  padding-bottom: 20px;
  border-bottom: 1px solid;
}

.info p{
  font-size: 15px;
  padding-bottom: 20px;
  color: black;

}

.info a{
  font-size: 20px;
}
/*fin de noticias*/

/*opera prima*/
.juegos img{
  width: 100%;
  padding: 10px 0;
}

.juegos h1{
   font-size: 40px;
   width: 100%;
   text-align: center;
   padding: 10px;
}

.juegos h2{
  font-size: 30px;
  width: 100%;
  text-align: center;
}

.juegos h3{
  font-size: 25px;
  width: 100%;
  text-align: center;
}
/**fin opera prima*/

/**nosotros**/
.nosotros img{
  width: 100%;
  padding: 10px 0;
}

.nosotros h1{
  font-size: 40px;
  width: 100%;
  text-align: center;
  padding: 10px;
}
/**fin de nosotros**/

/*pie de pagina*/
.top-footer{
  background-color: black;
}

.top-footer .contenedor{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.top-footer .redes-sociales{
  text-align: center;
  padding-top: 20px;
  padding-bottom: 35px;

  max-width: 270px;
  margin: 0 auto;
}

.top-footer a{
text-decoration: none;
color: white;
text-transform: uppercase;
}

.down-footer{
  height: 25px;
}

.down-footer p{
  color: black;
  font-size: 12px;
  text-align: center;
  padding: 15px;
}
/*fin pie de pagina*/
