/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  margin: 0;
  padding: 0;
  height: 100vh;
}

.container {
  min-height: 100vh;
  position: relative;
}

header {
  background-color: #00316c;
  height: 160px;
  padding: 10px;
}

header .header-logo {
  padding: 20px 60px;
}

.body {
    padding: 10px;
    padding-bottom: 60px;

    font-family: georgia;
    font-size: 22px;
    font-weight: 300;
}

.body > p,
.body > h3,
.home-button {
  margin: 20px 60px;
}

.body a {
  color: #6f6f6f;
}

.body .contact {
    font-family: Roboto !important;
    font-size: 16px;
    color: #6f6f6f;
    width: 30%;
    margin: 0 auto;
}

.body .contact p:nth-of-type(1) {
  font-family: Spinnaker;
    font-size: 40px !important;
    text-align: center;
}

.body .contact strong {
    display: block;
}

.body span {
  display: block;
}

.home-button {
  border-radius: 6px;
  background: linear-gradient(to bottom,#348bcf 0,#125ca6 100%);
  color: white !important;
  padding: 12px 24px;
  text-decoration: none;
  font-family: Arial;
  font-size: 16px;
}

.bcp-text {
  font-size: 16px;
}

h3 {
  font-size: 22px;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    text-align: center;
    color: gray;
}


@media only screen and (max-width: 600px) {
  header {
    height: 120px;
  }

  header .header-logo {
    padding: 20px;
  }

  header .header-logo img {
    width: 300px;
  }

  .body > p,
  .body > h3,
  .home-button {
    margin: 20px;
  }

  .body .contact {
    width: 50%;
  }
}

@media only screen and (max-width: 380px) {
  header {
    height: 80px;
  }

  header .header-logo {
    padding: 10px;
  }

  header .header-logo img {
    width: 200px;
  }

  .body > p,
  .body > h3,
  .home-button {
    margin: 10px;
  }

  .body .contact {
    width: 80%;
  }
}


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
