/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */
html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

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

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

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

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

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

textarea {
    resize: vertical;
}


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

html {
  /* footer ding */
  position: relative;
  min-height: 100%;
}

body {
  background-image: url(../img/bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;

  background-color: black;

  /* footer ding */
  margin: 0 0 85px; /* bottom = footer height */
}

nav {
  width: 100%;
  background-color: #303030;
  height: 40px;
  z-index: 999;
  position: fixed;
  opacity: 0.8;
}

nav .inner {
  width: 95%;
  margin: 0 auto;
}

.fb-like {
  float: right;
  opacity: 0.8; /* zodat meneer facebook iets minder aanwezig is */
  padding-top:8px;
}
.fb-like:hover {
  opacity: 1;
}

section {
  text-align: center;
  padding-top: 15%;
}

section img {
  max-width: 100%;
  height: auto;
}

ul.social {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

ul.social li {
  display: inline-block;
  padding: 0 3.5%;
}

ul.social li a {
  text-decoration: none;
  font-size: 2em;
}

.fb {
  color: #3A5796;
}
.yt {
  color: #cc181e;
}
.sc {
  color: #F50;
}
.rn {
  color: #e43526;
}

.circle {
/*  padding: 10px 10px;
  width: 20px;
  font-size: 20px;
  text-align: center;
  background: #fff;
  border-radius: 20px;*/

  padding: 25px;
  width: 37px;
  font-size: 20px;
  text-align: center;
  background: #303030;
  border-radius: 50px;

  opacity: 0.9;
}
.circle:hover {
  opacity: 0.7;
}


footer {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 85px;
    width: 100%;
}
footer ul li {
    display: inline;
    padding-right: 10px;
    opacity: 0.2;
}
footer ul li:hover {
  opacity: 0.5;
}


/* ==========================================================================
   Media Queries
   ========================================================================== */

/* for mobile devices */
/*@media only screen and (max-width: 767px) {*/
@media only screen and (max-width: 767px) {
    body {
        background-image: url(../img/bg-mobile.jpg);
        background-position: center center;
        background-repeat: repeat; /* repeat */
        background-attachment: fixed;
        background-size: cover;

        background-color: black;
    }
}



/* For tablets and mobile devices */
@media only screen and (max-width: 767px) and (orientation: portrait) {
  

  /*nav {background-color: red;}*/


  section {
    padding-top: 15%;
  }

  ul.social li {
    display: list-item;
    padding: 3.5% 0;
  }

  /* circle veranderen naar balk. fuck die circle */
  .circle {
    padding: 10px 0 10px;
    width: 100%;
    font-size: 50px;
    border-radius: 0px;
  }

  footer {
    display: none;
  }
}

@media only screen and (max-width: 995px) and (orientation: landscape) {
  

  /*nav {background-color: pink;}*/


  footer ul li img {
    height: 20px;
  }

  section {
    padding-top: 11%;
  }
}





@media only screen and (min-width: 35em) {

}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {

}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !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) ")";
    }

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

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

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

    img {
        max-width: 100% !important;
    }

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

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