.h1_alta_costura {
  font-size: 4em;
  font-weight: 900;
  color: white;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Reglamento */
.reglamento-container {
  display: flex;
  justify-content: center;
  margin: 20px;
  background-color: #0c0a10;
  border: 2px #0c0a10;
  padding: 10px;
  box-sizing: border-box;
}

div.reglamento > span {
  margin: 10px 30px 10px 10px;
  color: white;
}

.reglamento:hover {
  font-size: larger;
  font-weight: bolder;
  color: rgb(245, 250, 246);
  transition: 0.5s;
  box-shadow: 3px 24px 20px 18px rgba(0, 0, 0, 0.91);
}

.reglamento img {
  width: 30px;
  height: 30px;
  margin-right: 20px;
}

/* Enlaces */
.enlace-container {
  display: flex;
  justify-content: center;
}

.enlace {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px 5px 0 0;
  text-decoration: none;
  color: white;
}

.enlace img {
  margin: 0;
}

.reglamento {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px;
  border: 1px solid #0c0a10;
  border-radius: 14px;
  background: linear-gradient(
    253deg,
    rgb(187, 96, 96) 0%,
    rgba(181, 11, 11, 1) 16%,
    rgba(184, 10, 10, 1) 29%,
    rgba(199, 4, 4, 1) 43%,
    rgba(252, 3, 3, 1) 62%,
    #0c0a10 100%
  );
  background-blend-mode: normal;
  text-align: left;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
  margin: 0 auto;
}

/* Media queries */
@media (max-width: 400px) {
  .reglamento-container {
    margin: 0px;
  }

  .reglamento {
    width: 100%;
  }
}

@media (min-width: 1500px) {
  .reglamento {
    width: 50%;
  }
}

/* Estilos de imagen en los enlaces */
.enlace img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.enlace img:hover {
  filter: invert(17%) sepia(97%) saturate(7497%) hue-rotate(0deg) brightness(94%) contrast(105%);
}