@page {
    size: A4;
    margin: 0 0 0 0;
}
@media all {
    html, body {
        width: 210mm;
        height: 290mm;
        margin: 0 0 0 0 !important;
        padding: 0 0 0 0 !important;
        overflow: hidden;
    }

    html{
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-weight: 500;
        font-size: 18pt
    }
    body{
        background-color:white;
        
    }
    
    #card{
        width: 79.1mm;
        height: 47.9mm;
        border: solid;
        border-width: thin;
        border-color: black;
        padding: 3mm;
        margin: 30mm;
    }
    #printBtn{
        margin-left: 30mm;
    }
    #printNote{
        margin-left: 30mm;
        margin-top: 5mm;
        font-size: 14pt
    }
    p {
        margin-top: 0;
        margin-bottom: 0;
    }
    #logo{
        height: 28mm;
        padding-top: 2mm;
        padding-bottom: 4mm;
        margin-left: 0.2mm;
    }
    #no{
        float: left;
        font-size: 14pt
    }
    #year{
        float: right;
    }
    #name{
        float: left;
        color: rgb(150, 150, 150);
        
    }
    .hide{
        margin-top: 10px;
        margin-left: 10px;
    }
}
@media print {
    .hide {
        visibility: hidden;
    }
    .A4_content {
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        height: 210mm;
        width: 165mm;
        page-break-before: none;
        page-break-after: none;
        page-break-inside: avoid;
     }
     .A4_content:last-child{
        page-break-after: auto;
     }
     #name{
        float: left;
        color: rgb(150, 150, 150);
        
    }
    * { /* Replace class_name with * to target all elements */
        -webkit-print-color-adjust: exact;
                color-adjust: exact; /* Non-Webkit Browsers */
      }
}