/* Hoja de estilos para la práctica 4 */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #a17c59;
    margin: 0;
    font-family: 'Arial', sans-serif;
  }
  
  .credencial {
    width: 250px;
    min-height: 350px;
    background-color: white;
    border: 2px solid #743b02;
    border-radius: 15px;
    text-align: center;
    padding: 25px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
  }
  
  .credencial:hover {
    transform: translateY(-5px);
  }
  
  .foto {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid #743b02;
    
  }
  
  .info {
    margin-top: 15px;
    font-family: 'Arial', sans-serif;
  }
  
  .info h2 {
    font-size: 1.6em;
    color: #2e07f2;
    margin-bottom: 5px;
  }
  
  .info p {
    color: #250383;
    font-size: 1em;
    margin: 5px 0;
  }
  
  .credencial {
    background: linear-gradient(145deg, #ffffff, #dfe6e9);
    border-radius: 15px;
  }
  
  .btn {
    margin-top: 15px;
    display: inline-block;
    padding: 8px 15px;
    background-color: #8b6920;
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #946915;
  }
  