/* Estilos generales */
body {
  font-family: "Arial", sans-serif;
  background-color: #1e1e1e;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background-color: #ff4d4d;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header h1 {
  font-size: 2.5em;
  color: #fff;
  text-shadow: 2px 2px #000;
}

header p {
  font-size: 1.2em;
  color: #fff;
  margin-top: 10px;
}

.alerta2 {
  color: white;
  font-weight: bold;
  padding: 10px;
  font-size: x-large;
  text-align: center;
  top: 0;
  left: 100%;
}
.alerta {
  color: white;
  font-weight: bold;
  padding: 10px;
  margin-bottom: 15;
  font-size: x-large;
  text-align: center;
  white-space: nowrap; /* Evita que el texto se divida en varias líneas */
  overflow: hidden; /* Oculta el texto que se desborda */
  position: absolute; /* Establece posición absoluta para el desplazamiento */
  top: 0;
  left: 100%;
  animation: moveText 20s linear infinite;
}

@keyframes moveText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

section {
  padding: 20px;
  border-bottom: 2px solid #444;
}

h2 {
  color: #ff9900;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
}
h1 {
  margin-top: 0;
}
.capturas {
  padding-top: 20px;
}

.captura {
  margin-bottom: 30px;
}

.captura img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.captura h3 {
  font-size: 1.5em;
  color: #fff;
  background-color: #333;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 10px;
}

.captura p {
  background-color: #333;
  padding: 15px;
  border-radius: 10px;
  color: #ffcc00;
  font-size: 1.1em;
  text-align: justify;
}

.discord-message p {
  background-color: #222;
  color: #ff3366;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 1.1em;
  text-align: justify;
}

footer {
  text-align: center;
  background-color: #282828;
  padding: 10px;
}

footer p {
  color: #ccc;
  font-size: 1.1em;
}
