/* Evil Drone Sunday */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    background-color: #ffffff;
    color: #000000;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
}

/* Fixed header bar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 15px;
    z-index: 10;
    background-color: #000000;
}

.header .links {
    font-size: 16px;
}

.header .links a {
    color: #ffffff;
    text-decoration: underline;
    margin: 0 10px;
}

.header .links a:hover {
    color: #2c31d8;
}

/* Scrolling middle column */
.scroller {
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    max-width: 90%;
    overflow-y: auto;
    padding: 20px 0 40px 0;
}

.scroller p {
    margin-bottom: 20px;
    line-height: 1.6;
}
