@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Uchen&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

.caja_nav {
  background-color: black;
  text-align: center;
  position: sticky;
  top: 0%; }

header {
  position: sticky;
  top: 0%; }

.nav_items {
  display: inline-block;
  list-style-type: none;
  margin-right: 40px; }

#logo {
  height: 100px;
  width: 100px;
  text-align: center;
  animation-name: movimiento_logo;
  animation-duration: 4s;
  animation-iteration-count: infinite; }

.nav_items a:hover {
  text-decoration: underline dotted; }

nav ul li a {
  color: red;
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 1.5em;
  text-decoration: none; }

ul ul {
  position: absolute;
  display: none; }

ul ul li {
  color: white;
  font-size: 20px;
  border: solid white;
  background-color: black;
  display: block; }

ul li:hover ul {
  display: block; }

body {
  background-image: url("../images/banda_roja.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; }

.texto {
  background-color: black;
  line-height: 25px;
  padding: 20px;
  margin: 10px 50px 5px 50px;
  font-family: 'Uchen', serif;
  border: solid black;
  overflow: auto;
  color: white; }

footer h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 25px;
  color: red;
  text-decoration: underline black; }

.texto__principal {
  align-self: start;
  color: black;
  border: inset 10px red;
  margin: 25px;
  text-align: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 50px; }

footer {
  text-align: center;
  background-color: #171717;
  margin: 35px; }

.yt {
  height: 150px;
  width: 150px;
  position: fixed;
  bottom: 10px;
  right: 10px; }

.titulo {
  text-align: center;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 3rem;
  grid-area: titulo; }

.sección2 {
  text-align: center; }

.imagen {
  width: 400px;
  height: 400px;
  border-radius: 20px;
  border: solid 5px black;
  background-color: white;
  transition: transform 1s; }

.imagen:hover {
  transform: scale(1.4);
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px; }

.imagen_his {
  width: 400px;
  height: 400px;
  border-radius: 20px;
  background-color: white;
  margin-left: 656px;
  margin-top: 25px;
  margin-bottom: 50px;
  transition: transform 1s; }

.imagen_his:hover {
  transform: scale(1.7);
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px; }

.formulario {
  background-color: #171717;
  border: solid 10px #554d4d;
  text-align: center;
  margin: 30px; }

.formulario__texto {
  font-size: 30px;
  color: white;
  border-radius: 100px; }

.boton {
  border-radius: 20px;
  font-size: 25px;
  width: 140px;
  height: 41px; }

.video {
  margin-left: 656px;
  border: solid black 5px;
  border-radius: 25px; }

.grilla {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-areas: "logo1 logo2 logo3" "logo4 logo5 logo6" "logo7 logo8 logo9" ".     logo10 . ";
  grid-gap: 25px;
  margin-left: 100px;
  margin-top: 100px; }

.logo1 {
  grid-area: logo1; }

.logo2 {
  grid-area: logo2; }

.logo3 {
  grid-area: logo3; }

.logo4 {
  grid-area: logo4; }

.logo5 {
  grid-area: logo5; }

.logo6 {
  grid-area: logo6; }

.logo7 {
  grid-area: logo7; }

.logo8 {
  grid-area: logo8; }

.logo9 {
  grid-area: logo9; }

.logo10 {
  grid-area: logo10; }

.texto_img {
  font-family: 'Bebas Neue', cursive;
  font-size: 40px;
  color: black;
  text-align: center; }

.imagen_estadio_rivercamp {
  margin-left: 500px;
  border: solid 5px black;
  transition: transform 1s; }

.imagen_estadio_rivercamp:hover {
  transform: scale(1.5);
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px; }

.imagen_estadio_monumental {
  margin-left: 500px;
  border: solid 5px black;
  width: 862px;
  height: 458px;
  transition: transform 1s; }

.imagen_estadio_monumental:hover {
  transform: scale(1.3);
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px; }

.grid {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-template-areas: "cabecera"  "principal" "pie"; }

.cabecera {
  grid-area: cabecera; }

.principal {
  grid-area: principal; }

.pie {
  grid-area: pie; }

@media screen and (max-width: 480px) {
  .grid {
    display: flex;
    flex-direction: column; }
  .titulo {
    font-size: 25px; }
  .imagen {
    width: 300px;
    height: 300px; }
  .imagen:hover {
    transform: scale(5); }
  .video {
    width: 300px;
    height: 200px;
    margin-left: 20%; }
  .yt {
    height: 100px;
    width: 100px; }
  .pie {
    width: 400px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0); }
  h3 {
    font-size: 15px; } }

@keyframes movimiento_logo {
  0% {
    transform: rotateY(0); }
  100% {
    transform: rotate(360deg); } }
