
body {
  background-color: #fff8f0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Contenedor principal */
.container {
  max-width: 600px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.3);
  padding: 30px;
  text-align: center;
}

/* Título principal */
.Titulos {
  color: #ff7f00;
  font-size: 28px;
  margin-bottom: 20px;
}

/* Párrafos */
p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Lista de enlaces */
ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

ul li {
  margin: 10px 0;
}

a {
  color: #ff7f00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  color: #e66a00;
  text-decoration: underline;
}

/* Línea divisoria */
hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ffb347;
}

/* Texto pequeño */
small {
  font-size: 14px;
  color: #666;
}

strong {
  color: #ff7f00;
   }