/* PAGE BACKGROUND */
body {
    margin: 0;
    padding: 0;
    background-image: url(../image/image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 100vh;
    width: 100vw;
    position: relative;      /* anchor for absolute children */
}

/* MAIN BLOCK (Verdani + subtitle) */
.center-block {
    position: absolute;
    top: 55%;                /* <-- THIS CONTROLS HOW LOW IT IS */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* TITLE */
.p1 {
    font-size: 32px;
    margin: 0;
    font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}

/* SUBTITLE */
.subtitle {
    font-family: "Courier New", Courier, monospace;
    font-size: 12px;
    margin-top: 6px;
}

/* COPYRIGHT AT BOTTOM */
.footer-copy {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: "Courier New", Courier, monospace;
    font-size: 10px;
    opacity: 0.85;
}
