/* Hoja de estilos para la práctica 4 */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #e0f7fa;
    margin: 0;
    font-family: 'Arial', sans-serif;
  }
  
  .credencial {
    width: 270px;
    min-height: 400px;
    background-color: white;
    border: 2px solid #b2ebf2;
    border-radius: 15px;
    text-align: center;
    padding: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
  }
  
  .credencial:hover {
    transform: translateY(-5px);
  }
  
  .foto {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4dd0e1;
  }
  
  .info {
    margin-top: 15px;
    font-family: 'Arial', sans-serif;
  }
  
  .info h2 {
    font-size: 1.6em;
    color: #00796b;
    margin-bottom: 5px;
  }
  
  .info p {
    color: #004d40;
    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: #4db6ac;
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #00897b;
  }
  