body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  margin-bottom: 20px;
}

.logo img {
  max-width: 200px;
  height: auto;
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  line-height: 1.5;
}

.progress-bar {
  margin: 20px 0;
  height: 5px;
  background-color: #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  width: 70%;
  background-color: #007bff;
  height: 100%;
  border-radius: 5px;
  animation: progress-bar 3s ease-in-out infinite;
}

@keyframes progress-bar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
}

ul li a {
  text-decoration: none;
  color: #007bff;
}

ul li a span {
  color: #6c757d;
  font-weight: bold;
}

.pie-de-pagina {
  font-size: 12px;
  margin-top: 20px;
  color: #888;
}
