body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.credencial {
    width: 400px;
    min-height: 420px;
    background-color: #ff0000;
    border: 2px solid #e39700;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(20, 17, 206, 0.15);
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.credencial:hover {
    transform: scale(1.02);
}

.imagen {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #b65800c9;
    margin-bottom: 20px;
}
