body
{
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      min-height: 100vh;
      color: rgba(222,0,0,1);
      background: url("../img/fondo2.jpeg") no-repeat center center fixed;
      background-size: cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
}

h1
{
  text-shadow: none;
  color: #fff;
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  margin-top: 40px;
  text-align: center;
  font-size: 3rem;
  padding: 10px 30px;
  border-bottom: 6px solid #222;
  box-shadow: 0 8px 16px -8px #000;
  transition: color 0.3s, background 0.3s, transform 0.3s;
}

h1:hover 
{
  color: #ffd700;
  background: rgba(0,0,0,0.7);
  transform: scale(1.05);
}

    article
    {
      background: rgba(0,0,0,0.4);
      padding: 20px;
      border-radius: 10px;
      
      max-width: 800px;
      margin: 30px auto 0 auto;
      text-align: center;
      transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

h1:hover {
  color: rgba(255, 0, 0, 0.897);
  
  transform: scale(1.05);
}

article a {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #ff5858, #f09819);
  padding: 28px 29px;
  border-radius: 61px;
  font-weight: bold;
  display: inline-block;
  margin: 10px 0;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: none; /* Quita la sombra */
}

article a:hover {
  background: linear-gradient(90deg, #f09819, #ff5858);
  transform: scale(1.05);
}

hr {
  width: 90vw;
  max-width: 9000px;
  border-radius: 50px;
  height: 5px;
  background: linear-gradient(90deg, #ff0000, #c3c2bb87, #f00303); /* De rojo a dorado y rojo */
  margin: 30px 0;
  box-shadow: 0 2px 10px #000a;
}