
/* ===== DOKUMENT ===== */

.regulamin{
    max-width:900px;
    margin:auto;
    line-height:1.75;
    font-size:0.97rem;
}

.regulamin h1{
    text-align:center;
    margin-bottom:10px;
    font-weight:700;
}

.regulamin .subtitle{
    text-align:center;
    margin-bottom:40px;
}

/* ===== PARAGRAFY ===== */

.paragraph{
    margin-top:40px;
    font-weight:700;
}

/* ===== NUMEROWANIE AUTOMATYCZNE ===== */

.regulamin ol{
    counter-reset:item;
    list-style:none;
    padding-left:0;
}

.regulamin ol > li{
    counter-increment:item;
    margin-bottom:6px;
    padding-left:28px;
    position:relative;
}

.regulamin ol > li::before{
    content: counter(item) ".";
    position:absolute;
    left:0;
    font-weight:600;
}

.regulamin ol ol > li::before{
    content: counter(item, lower-alpha) ")";
}

/* ===== DRUK / PDF ===== */

@media print{

    nav, .no-print, footer{
        display:none !important;
    }

    body{
        background:white;
        color:black;
        font-size:11pt;
    }

    .regulamin{
        max-width:100%;
    }

    h1{
        font-size:18pt;
    }

    .paragraph{
        page-break-after:avoid;
    }

    ol, li{
        page-break-inside:avoid;
    }

}

/* format A4 */
@page{
    size:A4;
    margin:2.2cm 2cm 2.2cm 2cm;
}

/* numer strony */
@page{
    @bottom-center{
        content:"Strona " counter(page);
        font-size:10pt;
    }
}



	
	
	h1,h2,p
	{
	        font-family: 'Press Start 2P', monospace;

	}


	.nav-item {
        font-family: 'Press Start 2P', monospace;
        text-transform: uppercase;
		letter-spacing: 0.35em;
      }
	  
	  body
	  {
		background-image: url('./gfx/dotts.jpg');
		background-repeat: repeat-x;
	  }
	  
	  
	  .divider {
  width: 1px;
  background: rgba(255,255,255,.3);
  margin: 0 1rem;
}