@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,900;1,900&family=Lora:ital,wght@0,400;0,700;1,400&family=Courier+Prime:wght@400;0,700&display=swap');

body {
    background-color: #f4ecd8;
    font-family: "Times New Roman", Times, serif;
    color: #000 !important;
    margin: 0; padding: 0;
    line-height: 1.5;
    position: relative;
}

/* Effetto grana della carta */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/dusty-matt.png');
    pointer-events: none;
    opacity: 0.1;
    z-index: 1000;
}

#container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    border-left: 1px solid #c0bcae;
    border-right: 1px solid #c0bcae;
    background-color: #f4ecd8;
    box-sizing: border-box;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar { width: 5px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.1); border-radius: 10px; }
