/* ---------------------------------------------------- */
/* BASIC SETUP */
/* ---------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


body {
  font-family: "Homenaje",  "Árial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #555;  
 background-color: #F5F1F7;
      background-image: url("img/herringbone.png");
}

h1 {
    color: #555;
    font-size: 200%;
    font-weight: 100;
    margin-bottom: 10px;
    margin-left: 7px;
}

h2 {
    font-size: 160%;
    font-weight: 200;
        margin-left: 7px;
}

h3 {
    font-size: 140%;
    font-weight: 200;
        margin-left: 7px;
}

h4 {
    font-size: 100%;
    font-weight: 200;
        margin-left: 7px;
}

h1, h2, h3 {
  font-family: "Homenaje", "Árial", sans-serif; ;
  font-weight: 400;
  font-style: normal;
    text-transform: uppercase;
    text-align: center;
}

h1:after {
    display: block;
    background-color: #95BCE8;
    margin: 0 auto;
    height: 2px;
  background: #95BCE8;
    background: -webkit-gradient(linear, left top, right top, from(#357DC7) , to(#95BCE8));
    background: linear-gradient(to right, #357DC7 , #95BCE8);
    content: " ";
    width: 100%;
    max-width: 350px;
    margin-top: 5px
}



a:link,
a:visited {
   color: #357DC7;
    font-weight: 500;
   padding-bottom: 1px;    
}

a:hover,
a:active {
    color: #555;
    border-bottom: 1px solid transparent;
}


.container {
    padding: 0;
 }



/* ---------------------------------------------------- */
/* NAVIGATION */
/* ---------------------------------------------------- */


.bg-dark {
    font-size: 150%;
    color:  #357DC7 !important;
    background-color: #fff!important;
    margin-bottom: 5px;
}

.navbar-dark .navbar-nav .nav-link {
        color:  #357DC7 !important;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:active {
      color: #357DC7 !important;
        text-decoration: none;
    font-weight: normal;
    }

.navbar-dark .navbar-nav .nav-link:hover {
      color: #95BCE8;
     text-decoration: none; 
    margin-bottom: 5px;
    }

.game-menu-links a {
  position: relative;
  display: inline-block;
  padding-left: 1.25rem;
  color: #357DC7;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.game-menu-links a {
  position: relative;
  display: inline-flex;
  align-items: center;

  gap: 8px; /* ruimte tussen pijl en tekst */

  color: #357DC7;
  text-decoration: none;

  transition: color 0.2s ease, transform 0.2s ease;
}

.game-menu-links a::before {
  content: "";
  width: 14px;
  height: 14px;

  background-image: url("img/arrow-hover.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  flex-shrink: 0;

  opacity: 0;
  transition: opacity 0.2s ease;
}

.game-menu-links a:hover,
.game-menu-links a:focus {
  color: #95BCE8;
  transform: translateX(2px);
}

.game-menu-links a:hover::before,
.game-menu-links a:focus::before {
  opacity: 1;
}


.header {
     background-image: url(img/header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 400px;
         border-top: 2px solid #a4dbee;  
         border-bottom: 2px solid #a4dbee;  
}

hr.border {
border: 0;
height: 2px;
    margin-top: 5px;
    margin-bottom: 5px;
background: #333;
background-image: -webkit-linear-gradient(left, #a4dbee, #2534ab, #a4dbee);
background-image: -moz-linear-gradient(left, #a4dbee, #2534ab, #a4dbee);
background-image: -ms-linear-gradient(left, #a4dbee, #2534ab, #a4dbee);
background-image: -o-linear-gradient(left, #a4dbee, #2534ab, #a4dbee);
}

/* SQUARE */

.square {
    margin-top: 20px;
}

 ul .banner {
       list-style: none;}   


.banner .square-ani {
    display: inline-block;
    width: 40px;
    height: 40px;
        position: relative;
        top: calc(50% - 60px);
        text-shadow: 3px white;
    }

    .square-ani:nth-child(1) {
                width: 160px;
    height: 10px;
             background-color: #2534ab;
       
        -webkit-animation: fade 4s infinite 200ms;
        animation: fade 4s infinite 200ms;
    }
    .square-ani:nth-child(2) { 
                width: 100px;
    height: 10px;
            background-color: #357DC7;
        -webkit-animation: fade 4s infinite 400ms;
        animation: fade 4s infinite 400ms;
    }
    .square-ani:nth-child(3) {
                width: 80px;
    height: 10px;
        background-color: #95BCE8;
        -webkit-animation: fade 4s infinite 600ms;
        animation: fade 4s infinite 600ms;
    }
    .square-ani:nth-child(4) {
                width: 40px;
    height: 10px;
    background-color: #a4dbee;
        -webkit-animation: fade 4s infinite 800ms;
        animation: fade 4s infinite 800ms;
    }
    
    @-webkit-keyframes fade {
        50% {
            opacity: 0.02;
        }
    }
 
    @keyframes fade {
        50% {
            opacity: 0.02;
        }
    }

/* ---------------------------------------------------- */
/* CONTENT */
/* ---------------------------------------------------- */

.content {
    padding: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: none;
        background-color: #fff;
        border-top: 1px solid #cad3df;
         border-bottom: 2px solid #a4dbee;  
}

.avatar {
  background-color: transparent;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 4px;
}

.news {
    margin-bottom: 40px;
}

.media {
    margin-bottom: 40px;
}

.news-img, .mr-3, .mx-3 {
    margin-right: 0!important;
}

.news-content {
    padding: 20px;
     border-radius: 20px;
    border: 1px solid #cad3df;
    width: 100%;
  background: #f5eee1 url('img/handmade-paper.png') repeat;
  color: #555;
  box-shadow: 0 0 8px rgba(70, 55, 35, 0.10);
}

..icon-img {
  width: 100%;
  max-width: 150px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  opacity: 100;
  filter: drop-shadow(0 0 1px rgba(70, 55, 95, 0.12));
  border: 2px solid #ddd;
  box-shadow: 0 6px 6px #efefef;
}

.icon-img-games {
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  opacity: 100;
  filter: drop-shadow(0 0 1px rgba(70, 55, 95, 0.12));
  border: 2px solid #ddd;
  box-shadow: 0 6px 6px #efefef;
}

.pixelart
{width: 140px;
border:  none;
}

.pixelart-big
{width: 200px;
border:  none;
}

.content-box {
  margin-bottom: 20px;;
  padding: 12px;
}

@media (max-width: 768px) {
  .content-box {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .content-box {
    margin-bottom: 15px;
  }
}

.code-container {
    position: relative;
    margin: 20px 0;
}

.copy-btn {
    position: relative;
    display: inline-block;
    top: 5px;
    right: 10px;
    cursor: pointer;
    padding: 2px 10px;
      filter: drop-shadow(0 0 1px rgba(70, 55, 95, 0.12));
  border: 2px solid #cad3df;
box-shadow: 0 0 8px rgba(70, 55, 35, 0.10);
}

pre {
    padding: 15px;
    overflow-x: auto;
}

..date-card {
  max-width: 400px;
  width: 100%;
  margin: 40px auto;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #357DC7;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-family: inherit;
}

.date-card h2 {
  margin-top: 0;
  color: #357DC7;
}

.subtext {
  font-size: 1.5em;
  color: #357DC7;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .reflection-box {
    margin-bottom: 15px;
  }
}

.related-note {
  margin: 18px 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.65);
  border-left: 3px solid #95BCE8;
  font-size: 0.95em;
}

.related-note strong {
  color: #2534ab;
}

.network-box {
  margin-bottom: 20px;;
  padding: 12px;
}

@media (max-width: 768px) {
  .reflection-box {
    margin-bottom: 15px;
  }
}


@media (max-width: 768px) {

  .icon-img {
    width: 100%;
    max-width: 120px;
    height: auto;
  }

  .date-card {
    width: 100%;
    max-width: 100%;
  }

  h1:after {
    width: 100%;
  }

}

@media (max-width: 768px) {

    h1 {
        font-size: 1.8rem;
    }

}


@media (max-width: 768px) {

    .news-img {
        text-align: center;
        margin-bottom: 20px;
    }

    .icon-img {
        display: block;
        margin: 0 auto;
        width: 200px;
        height: auto;
    }

}


/* ---------------------------------------------------- */
/* FOOTER */
/* ---------------------------------------------------- */

.footer {
  padding: 20px 40px;
  color: #555;
  background-color: #FDFCFD;
}

.footer a:link,
.footer a:visited { 
    color: #357DC7;
    text-decoration: none;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.footer a:hover,
.footer a:active {
    color: #555;
     text-decoration: none;
    font-weight: normal;
}


