

    @import url('https://fonts.googleapis.com/css?family=Roboto:100,300');
    @import "sheets-of-paper.css";

    .page {

    /*
    width: 21.6cm;
    min-height: 29.7cm;
    */

    width: 14cm;
    min-height: 19cm;


    padding-left: 1.3cm;
    padding-top: 1.3cm;
    padding-right: 1.3cm;
    padding-bottom: 1.3cm;


    /*text-align: justify;*/
    font-size: 17pt;
    font-weight: 300;
    }


    .page.active::after {
    content: "|";
    color: #000;
    animation: blink 1s linear infinite;
    font-weight: 100;

    }


@keyframes blink {
    0% {
    opacity: 0;
    }
    50% {
    opacity: 1;
    }
    100% {
    opacity: 0;
    }
}

    /* Use CSS Paged Media to switch from continuous documents to sheet-like documents with separate pages */
    @page {
    /* You can only change the size, margins, orphans, widows and page breaks here */

    /* Paper size and page orientation */
    size: legal portrait;

    /* Margin per single side of the page */
    margin-left: 2cm;
    margin-top: 2cm;
    margin-right: 2cm;
    margin-bottom: 2cm;
}

/* Start button center on the page */
#start {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20pt;
    font-weight: 300;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 200;


}

#menu{
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;
}