@media print { .no-print { display: none !important; } } body { background-image: linear-gradient(to bottom, aqua, blue); font-family: "Times New Roman", Times, serif; /*background-image: url("../img/background.png"); background-size: cover;*/ } main { width: 210mm; /* A4 width */ height: 297mm; /* A4 height */ max-width: 100%; /* make it responsive on small screens */ margin: 20px auto; /* center horizontally with some margin */ padding: 20px; background: white; /* paper color */ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* subtle paper shadow */ overflow-y: auto; /* vertical scroll if content exceeds height */ border: 1px solid #ccc; /* optional border like a sheet of paper */ box-sizing: border-box; /* include padding in size */ font-family: "Times New Roman", serif; /* optional paper-like font */ } p { color: black; } h1, h2, h3, h4 { color: black; } .container { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; width: 100%; background-color: beige; } .album-img { width: 10vw; height: 10vw; }