.header {
    height: 20vh;
    background-color: orangered;

    display: flex;
    align-items: center;
    justify-content: center;
}

.header {
    height: 20vh;

    background: linear-gradient(135deg, #ff6a00, #ee0979);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    color: white;

    letter-spacing: 10px;
    text-transform: uppercase;
}

.table{
    margin: 20px auto;
    width :80%;
    border-spacing: 20px;
}

.avatar img {
    width: 160px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.info {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-left: 40px;
}

.col p {
    margin-bottom: 14px;
    font-size: 16px;
}

.file-link {
    margin-top: 12px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;
    background-color: orangered;

    color: white;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;

    border-radius: 999px;
    backdrop-filter: blur(6px);

    transition: all 0.25s ease;
}

