
/* Estilo general de la página */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f4f4f4;
}

/* Estilo de la credencial */
.credencial {
  background-color: #ffffff;
  width: 300px;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 8px 8px rgba(0, 1, 1, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
  border-color: #000000;
}

/* Estilo para la imagen */
.imagen img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Estilo para la información */
.informacion h2 {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 10px;
}

.informacion p {
  font-size: 1rem;
  color: #000000;
  margin: 5px 0;
}