@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Audiowide;
  color: #c237db;
}

body {
  background-image: url(../assets/back.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body main {
  padding: 50px;
}

header {
  background-image: url(../assets/back.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: sticky;
  top: 0;
  z-index: 10;
}
header .logo {
  height: 8vh;
  width: auto;
}
header .titulo {
  color: #9D00FF;
  margin-right: 70px;
}
header .nav-link {
  color: #9D00FF;
}
header .activo {
  color: #c237db;
  font-weight: 900;
}
@media (min-width: 480px) and (max-width: 960px) {
  header .logo {
    height: 10vh;
    width: auto;
  }
  header .titulo {
    display: none;
  }
}
@media (min-width: 300px) and (max-width: 479px) {
  header .logo {
    height: 10vh;
    width: auto;
  }
  header .titulo {
    display: none;
  }
}

footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}
footer .rslink {
  display: flex;
  gap: 20px;
}
footer .rslink li {
  list-style: none;
}
footer .rslink li .rs {
  height: 5vh;
  width: auto;
}
footer .rslink li .wa {
  position: fixed;
  bottom: 50px;
  right: 50px;
  animation: vibrar 1s infinite ease;
}
footer .rslink li :hover {
  animation: none;
}
@media (min-width: 480px) and (max-width: 960px) {
  footer {
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 300px) and (max-width: 479px) {
  footer {
    flex-direction: column;
    gap: 20px;
  }
}

@keyframes vibrar {
  10% {
    transform: translateY(10px);
  }
  20% {
    transform: translateX(5px);
  }
  30% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(5px);
  }
  70% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
  90% {
    transform: translateX(-5px);
  }
  100% {
    transform: rotateY(0);
  }
}
.home {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.home .games-home {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.home .games-home p {
  font-size: 1.5rem;
}
.home .games-home .img-home {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.home .games-home .img-home .mb-imgs {
  width: 25vw;
  height: auto;
  transition: 2s all ease-in-out;
}
.home .games-home .img-home :hover {
  scale: 1.5;
}
.home .games-home .img-home .rc-imgs {
  height: 40vh;
  width: auto;
  transition: 2s all ease-in-out;
}
.home .games-home .img-home :hover {
  scale: 1.5;
  object-fit: cover;
}
.home .games-home .btn-game {
  text-decoration: none;
  font-size: 1.25rem;
  color: #9D00FF;
  padding: 5px;
  border-radius: 15px;
  text-shadow: 0 0 5px #c237db, 0 0 10px #c237db, 0 0 20px #c237db;
  box-shadow: 0 0 5px #c237db, 0 0 15px #c237db;
}
@media (min-width: 480px) and (max-width: 960px) {
  .home .games-home .img-home .rc-imgs, .home .games-home .img-home .mb-imgs {
    height: auto;
    width: 40vw;
  }
}
@media (min-width: 300px) and (max-width: 479px) {
  .home .games-home .img-home {
    flex-direction: column;
  }
  .home .games-home .img-home .rc-imgs, .home .games-home .img-home .mb-imgs {
    height: auto;
    width: 80vw;
  }
}

.mab-main {
  text-align: center;
}
.mab-main p {
  padding: 0 10rem;
}
@media (min-width: 480px) and (max-width: 960px) {
  .mab-main p {
    padding: 0 2rem;
  }
}
@media (min-width: 300px) and (max-width: 479px) {
  .mab-main p {
    padding: 0;
  }
}

.rac-main {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.rac-main p {
  padding: 0 10rem;
}
.rac-main .rac-gal {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  gap: 20px;
}
.rac-main .rac-gal img {
  width: 40vw;
  height: auto;
  border-radius: 100px;
}
@media (min-width: 480px) and (max-width: 960px) {
  .rac-main p {
    padding: 0 2rem;
  }
  .rac-main .rac-gal {
    gap: 10px;
  }
  .rac-main .rac-gal img {
    border-radius: 50px;
  }
}
@media (min-width: 300px) and (max-width: 479px) {
  .rac-main p {
    padding: 0;
  }
  .rac-main .rac-gal {
    gap: 10px;
  }
  .rac-main .rac-gal img {
    width: 80vw;
    border-radius: 25px;
  }
}

.cont {
  display: flex;
  justify-content: space-around;
  height: 80vh;
}
.cont iframe {
  height: 60vh;
  width: 30vw;
}
.cont form {
  width: 30vw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
}
.cont form div {
  display: flex;
  justify-content: space-around;
}
.cont form div input {
  border-radius: 5px;
  padding: 5px;
}
@media (min-width: 480px) and (max-width: 960px) {
  .cont {
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .cont iframe {
    height: 40vh;
  }
  .cont iframe, .cont form {
    width: 80vw;
  }
}
@media (min-width: 300px) and (max-width: 479px) {
  .cont {
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .cont iframe, .cont form {
    width: 80vw;
  }
  .cont iframe {
    height: 40vh;
  }
  .cont form {
    gap: 10px;
  }
}

/*# sourceMappingURL=styles.css.map */
