* {
    /* make transparent link selection, adjust last value opacity 0 to 1.0 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
    /* prevent callout to copy image, etc when tap to hold */
    -webkit-touch-callout: none;
    /* prevent webkit from resizing text to fit */
    -webkit-text-size-adjust: none;
    /* prevent copy paste, to allow, change 'none' to 'text' */
    -webkit-user-select: none;

    background-image: linear-gradient(top, #A7A7A7 0%, #A4A4A4 51%);
    background-image: -webkit-linear-gradient(top, #A7A7A7 0%, #A4A4A4 51%);
    background-image: -ms-linear-gradient(top, #A7A7A7 0%, #A4A4A4 51%);
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #A7A7A7),
        color-stop(0.51, #A4A4A4)
    );
    background-attachment: fixed;

    font-family: 'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    font-size: 12px;

    height: 100%;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

a, a:visited, a:hover {
    color: grey;
}

.page {
    justify-content: center;
    margin-top: 1em;
}

.page-item {
    vertical-align: middle;
}

.page-logo {
    background: url('https://8lakes.ca/images/8lakes-logo-512.png') no-repeat center top;
    width: 14em;
    height: 14em;
    position: absolute;
    left: 50%;
    margin-left: -7em;
    text-align: center;
    background-size: 14em;
    border-radius: 50%;
    box-shadow: 4px 4px 4px 2px #777e;
}

div.page-title {
}

h1.page-title {
    font-size: 3em;
    padding-top: 5em;
    font-weight: normal;
    text-align: center;
    text-decoration: underline;
    -webkit-filter: drop-shadow(4px 4px 4px #777);
    filter: drop-shadow(4px 4px 4px #777);
}

.fb {
    position: absolute;
    margin: 0 auto;
    top: 40%;
    width: 100%;
    margin-top: 2em;
    text-align: center;
}

.contact-us {
    position: absolute;
    margin: 0 auto;
    top: 95%;
    width: 100%;
    text-align: center;
    font-size: 1.5em;
    color: #777;
}
