/* Hoja de estilos para la práctica 4 */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
  }
  
  .credencial {
    width: 250px;
    min-height: 380px; /* Ajusta esta altura según lo que necesites */
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 15px;
    text-align: center;
    padding: 30px; /* Puedes aumentar el padding para hacerla más grande */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
 
  .foto {
    width: 100%;
    border-radius: 10px;
  }
  
  .info {
    margin-top: 15px;
    font-family: 'Arial', sans-serif;
  }
  
  .info h2 {
    font-size: 1.5em;
    color: #333;
  }
  
  .info p {
    color: #555;
    font-size: 1em;
  }
  .foto {
    width: 150px;
    height: 150px;
    border-radius: 50%;
  }
  
  