
        /* FONT */
        html {
            min-height: 100%;
        }
        body {
            padding: 0; margin: 0;
            font-family: Arial, Helvetica, Sans-Serif;
            font-size: 16px;
            min-height: 100%;
        }
        @media only screen and (max-width: 600px) {
            .paper img {
                float: none;
                clear: both;
                margin: auto;
                width: 100%;
            }
        }
        .paper img {
            float: right;
            margin-left: 20px;
            -o-object-fit: contain;
            object-fit: contain;
        }
        hr {
            clear: both;
            xvisibility: hidden;
        }
        .main {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 50px;
        }
        /* HEADER */
        .main > div.head {
            padding-top: 20px;
            min-height: 130px;
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            justify-content: space-evenly;
            /* align-items: center; */
        }
        /* CONTENT */
        .main > div.cont {
            width: 90%;
            max-width: 1200px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        /* FEATURED / EVENTS BASIC */
        .featured, .events {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: center;
        }
        /* STANDARD EVENTS */
        .events {
            flex-wrap: wrap;
            margin-top: 50px;
            display: flex;
            flex-direction: row;
        }

        /* SCROLLABLE ON SLIM SCREENS */
        @media only screen and (max-width: 800px) {
            .featured {
                flex-wrap:wrap;
                /*overflow-y: hidden;
                overflow-x: scroll;*/ 
            }
        }
        
        /* ONE EVENT"CARD" */
        .featured > a, .events > a {
            text-decoration: none;
            display: flex;
            flex-direction: column;
        }

        a {
            color: inherit;
        }