 * { box-sizing: border-box; margin: 0; padding: 0; font-family: "Times New Roman", Times, serif; } body { display: flex; flex-direction: column; justify-content: center; align-items: center; background: #e8eff5; padding: 20px; } .certificate { width: 100%; max-width: 900px; background: white; padding: 50px; border: 10px solid #1e3a5f; box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2); text-align: center; position: relative; } .certificate h1 { font-size: 32px; text-transform: uppercase; color: #1e3a5f; border-bottom: 3px solid #d4af37; padding-bottom: 10px; margin-bottom: 20px; } .certificate h2 { font-size: 22px; margin-bottom: 20px; color: #2c3e50; } .certificate p { font-size: 18px; margin: 10px 0; } .input-field { border: none; border-bottom: 2px solid #2c3e50; font-size: 18px; outline: none; background: transparent; width: 100%; max-width: 300px; text-align: center; font-weight: bold; color: #1e3a5f; } .signature-section { display: flex; justify-content: space-between; margin-top: 40px; font-size: 16px; flex-wrap: wrap; } .signature { width: 200px; text-align: center; padding-top: 5px; font-weight: bold; } .stamp { width: 120px; height: 120px; border: 3px solid #d4af37; text-align: center; line-height: 120px; font-weight: bold; background: rgba(212, 175, 55, 0.1); color: #d4af37; border-radius: 50%; } .print-btn { display: block; margin: 20px auto; padding: 12px 24px; font-size: 18px; cursor: pointer; background: #d4af37; color: white; border: none; border-radius: 5px; transition: background 0.3s; } .print-btn:hover { background: #b8932c; } /* Responsive Fix */ @media (max-width: 768px) { .certificate { padding: 20px; border-width: 5px; } .signature-section { flex-direction: column; align-items: center; } .signature, .stamp { margin-top: 10px; } .input-field { width: 90%; max-width: 100%; font-size: 16px; } } /* Print Optimization with Border */ @media print { .print-btn { display: none; } } 