table {
    border-collapse: collapse;
    margin: 25px 0px;
    min-width: 400px;
    box-shadow: 3px 3px 3px #EAEAEA;
    margin: auto;
}

* {
    font-family: Arial, Helvetica, sans-serif;
    border: 0; margin: 0; padding: 0; 
}

caption {
    padding: 10px;
}

thead tr{
    background-color: #ECF8F8;
    font-weight: bold;
}

th {
    text-align: left;
}

th, td {
    padding: 12px 15px;
}

table tbody tr {
    border-bottom: 1px solid #5B7B7A;
}

tbody tr:nth-of-type(even) {
    background-color: #EAEAEA;
}

.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 2px solid #9F4A54;

}

.text {
    margin: 10px;
}
.text h1 {
    font-size: clamp(20px, 2.5vw, 60px);
    flex: 1 0 25%;
    color: black;
    margin: 5px;
}

.text p:first-of-type {
    text-align: center;
    margin: 5px;
    margin-bottom: 10px;
}

.text p:nth-of-type(2) {
    display: none;
}

@media print {
    h1 {
        display: none;
    }

    .text p:first-of-type, caption {
        display: none;
    }

    .text p:nth-of-type(2) {
        display: contents;
    }

    .text {
        border-bottom: none;
    }

    table {
        box-shadow: 0px 0px 0px #EAEAEA;
    }

}