@charset "UTF-8";
/*RESET*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

/*Colores Globales*/
/*tamaños textos*/
/*GENERAL*/
body {
  font-size: 1.2rem;
  line-height: 1.4em;
  font-family: "Roboto", sans-serif;
  color: white;
  background-color: #283593;
  animation-duration: 2s;
  animation-name: aparecer;
  animation-delay: 0s;
}

@keyframes aparecer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
main {
  margin-top: 6.6rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
}

.conteiner {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  align-content: center;
}

#fixed {
  transform: translate(1350px, 425px);
  position: fixed;
  z-index: 4;
}

/*CONTENIDO*/
.avisos {
  color: black;
}

/*HEADER*/
.menu {
  background-image: linear-gradient(to bottom, #0b2edb, #3f3c3c);
  color: white;
  padding-right: 0;
}

/*FOOTER*/
footer {
  background-color: #001064;
  color: white;
}

.seccion {
  box-shadow: 0 10px 30px -10px black;
}

.seccion--otros {
  background: #283593;
  color: white;
  border-radius: 1rem;
}

.seccion--destacado {
  background: #283593;
  color: white;
  border-radius: 1rem;
}

.seccion__text {
  font-size: 1rem;
}

.seccion__title {
  font-size: 2rem;
}

.card {
  margin: 1.5rem;
  max-width: 300px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px -10px black;
}

.cardjugador--light {
  background: rgba(255, 255, 255, 0.521);
  color: black;
}

.cardequipo--dark {
  background: black;
  color: white;
}

.card__text {
  font-size: 1rem;
}

.card__title {
  font-size: 2rem;
}

.flex {
  display: flex;
}

.button {
  display: inline-block;
  border-radius: 3px;
  padding: 7px 12px;
  border: 1px solid #d5d5d5;
  background-image: linear-gradient(#eee, #ddd);
  font: 700 13px/18px Helvetica, arial;
}

.button--jugador-reclutar {
  color: #fff;
  background: #569e3d linear-gradient(#79d858, #569e3d) repeat-x;
  border-color: #4a993e;
}

.button--equipo-jugar {
  color: white;
  background: red;
}

form {
  color: black;
  font-size: 1rem;
  margin-left: 5rem;
  margin-right: 5rem;
}

label {
  margin-left: 1rem;
}

.cuadroTexto {
  margin-top: 2rem;
  padding: 1rem 1rem 1rem 1rem;
  box-shadow: 0 10px 30px -10px black;
}

.cuadroTexto--letrachica {
  background: #793b43;
  color: white;
}

.cuadroTexto--titulo {
  background: #283593;
  color: white;
}

.cuadroTexto__text {
  font-size: 1rem;
}

.cuadroTexto__title {
  font-size: 2rem;
}

.cuadroTexto__textsmall {
  font-size: 0.7rem;
}

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