:root {
  --maincolor: rgb(121, 194, 220); 
  --darkcolor: rgba(39, 42, 51, 1);
}

body {
  color: #fff;
  font-family: "Poppins", sans-serif;
}

header.app-head {
  width: calc(100% - 40px);
  float: left;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  backdrop-filter: blur(10px);
  z-index: 99000;
  left: 20px;
  top: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  text-align: center;
  padding: 10px 0;
  border-radius: 0 0 3px 3px;
}

main {
  padding-top: calc(1.5em + 30px);
  min-height: 100vh;
  box-sizing: border-box;
  padding-bottom: 80px;
}

sup {
  margin: 0 3px;
  font-size: 60%;
  opacity: 0.5;
}
hr {
  border: none;
  height: 0.75px;
  position: relative;
  background: radial-gradient(
    var(--maincolor) 30%,
    rgba(0, 0, 0, 0.1) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

footer {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 15px 0;
  float: left;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.heart {
  color: var(--maincolor);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

.link-a{
    color: var(--maincolor);
}

/**/
input,
input:focus {
  outline: none;
}
input.ipwd {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 3px;
  padding: 0 10px;
  box-sizing: border-box;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  box-sizing: 0 0 5px rgba(0, 0, 0, 0.5);
}

button {
  height: 30px;
  position: relative;
  margin-top: 5px;
  float: right;
  margin-top: -35px;
  margin-right: 5px;
  border-radius: 3px;
  background: var(--maincolor);
  color: var(--darkcolor);
  border: none;
  box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.7);
}

.container {
  max-width: 800px;
  width: calc(100% - 40px);
  margin: auto;
}

/*LETTER WRAP*/

.signs {
  width: 100%;
  float: left;
}

.letter-wrap {
  float: left;
  padding: 6px 12px;
  border: 1px solid #000;
  margin: 0 5px 5px 0;
  border-radius: 3px;
}

.w100 {
  width: 100%;
}
.w70 {
  width: 70%;
}
.w30 {
  width: calc(30% - 10px);
}
@media (max-width: 600px) {
  .w100,
  .w70,
  .w30 {
    width: 100%;
  }
}

.tc {
  text-align: center;
}
.fl {
  float: left;
}
.my10 {
  margin: 10px 0;
}



.sc3 {
  font-size: 1em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  padding: 6px;
  border-radius: 3px;
  margin-left: 10px;
  text-align: center;
}
@media (max-width: 600px) {
    .sc3 {
      margin: 10px 0px;
    }
  }

/*PSWD STATUS*/

.status {
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  box-sizing: border-box;
  text-shadow: 1px 1px 5px #000;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding-right: 91px;
}


.status::before {
  content: "Tijd om te kraken ≈ ";
  color: rgba(255, 255, 255, 0.3);
  font-weight: bold;
}

@media (max-width: 600px) {
    .status::before {
        content: "Kraaktijd ≈ ";
        font-weight: 300;
      } 
}

.status-0 {
  color: rgb(0, 176, 0);
  border-left: 3px solid rgb(0, 176, 0);
}
.status-0::after {
  content: "STERK";
  background: rgb(0, 176, 0);
}

.status-1 {
  color: rgb(93, 240, 93);
  border-left: 3px solid rgb(93, 240, 93);
}
.status-1::after {
  content: "GEMIDDELD";
  background: rgb(93, 240, 93);;
}

.status-2 {
  color: yellow;
  border-left: 3px solid yellow;
}
.status-2::after {
  content: "NIET STERK";
  background: yellow;
}

.status-3 {
  color: orange;
  border-left: 3px solid orange;
}
.status-3::after {
  content: "SLECHT";
  background: orange;
}

.status-4 {
  color: rgb(255, 97, 97);
  border-left: 3px solid rgb(255, 97, 97);
}
.status-4::after {
  content: "SUPER SLECHT";
  background: rgb(255, 97, 97);;
}

.status-0::after,
.status-1::after,
.status-2::after,
.status-3::after,
.status-4::after {
  float: right;
  color: #000;
  text-shadow: none;
  padding: 5px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 80%;
  border-radius: 0 3px 0 3px;
}

/**/
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.signs {
  width: 100%;
  float: left;
}

ul.signs > li {
  padding: 6px 12px;
  box-sizing: border-box;
}
ul.signs > li:nth-child(odd) {
  background: rgba(0, 0, 0, 0.15);
}
ul.signs > li:nth-child(even) {
  background: rgba(0, 0, 0, 0.3);
}

.opcde {
  opacity: 0.2;
  padding-left: -5px;
}

.opc6 {
  opacity: 0.6;
  padding-left: 5px;
}

.opc100 {
  opacity: 1;
}

/* Glitch*/

.glitch {
  position: relative;
  color: var(--maincolor);
  font-size: 1.5em;
  letter-spacing: -0.1em;
  font-weight: 300;
  animation: glitch-skew 0.5s infinite linear alternate-reverse;
}
.glitch::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  left: 2px;
  text-shadow: -2px 0 #000;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 2s infinite linear alternate-reverse;
}
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  left: -2px;
  text-shadow: -2px 0 #fff, 2px 2px orange;
  animation: glitch-anim2 0.5s infinite linear alternate-reverse;
}

/* Creates an animation with 20 steaps. For each step, it calculates 
  a percentage for the specific step. It then generates a random clip
  box to be used for the random glitch effect. Also adds a very subtle
  skew to change the 'thickness' of the glitch.*/
@keyframes glitch-anim {
  0% {
    clip: rect(38px, 9999px, 42px, 0);
    transform: skew(0.92deg);
  }
  5% {
    clip: rect(68px, 9999px, 96px, 0);
    transform: skew(0.18deg);
  }
  10% {
    clip: rect(33px, 9999px, 69px, 0);
    transform: skew(0.25deg);
  }
  15% {
    clip: rect(82px, 9999px, 76px, 0);
    transform: skew(0.94deg);
  }
  20% {
    clip: rect(76px, 9999px, 79px, 0);
    transform: skew(0.81deg);
  }
  25% {
    clip: rect(69px, 9999px, 19px, 0);
    transform: skew(0.45deg);
  }
  30% {
    clip: rect(81px, 9999px, 62px, 0);
    transform: skew(0.75deg);
  }
  35% {
    clip: rect(86px, 9999px, 91px, 0);
    transform: skew(0.54deg);
  }
  40% {
    clip: rect(30px, 9999px, 46px, 0);
    transform: skew(0.92deg);
  }
  45% {
    clip: rect(11px, 9999px, 39px, 0);
    transform: skew(0.69deg);
  }
  50% {
    clip: rect(20px, 9999px, 57px, 0);
    transform: skew(0.6deg);
  }
  55% {
    clip: rect(71px, 9999px, 95px, 0);
    transform: skew(0.3deg);
  }
  60% {
    clip: rect(78px, 9999px, 99px, 0);
    transform: skew(0.17deg);
  }
  65% {
    clip: rect(73px, 9999px, 7px, 0);
    transform: skew(0.41deg);
  }
  70% {
    clip: rect(77px, 9999px, 69px, 0);
    transform: skew(0.32deg);
  }
  75% {
    clip: rect(95px, 9999px, 42px, 0);
    transform: skew(0.46deg);
  }
  80% {
    clip: rect(86px, 9999px, 2px, 0);
    transform: skew(0.82deg);
  }
  85% {
    clip: rect(58px, 9999px, 77px, 0);
    transform: skew(0.88deg);
  }
  90% {
    clip: rect(34px, 9999px, 28px, 0);
    transform: skew(0.92deg);
  }
  95% {
    clip: rect(42px, 9999px, 47px, 0);
    transform: skew(0.71deg);
  }
  100% {
    clip: rect(31px, 9999px, 18px, 0);
    transform: skew(0.63deg);
  }
}
@keyframes glitch-anim2 {
  0% {
    clip: rect(46px, 9999px, 19px, 0);
    transform: skew(0.77deg);
  }
  5% {
    clip: rect(46px, 9999px, 20px, 0);
    transform: skew(0.67deg);
  }
  10% {
    clip: rect(26px, 9999px, 87px, 0);
    transform: skew(0.63deg);
  }
  15% {
    clip: rect(81px, 9999px, 39px, 0);
    transform: skew(0.06deg);
  }
  20% {
    clip: rect(44px, 9999px, 1px, 0);
    transform: skew(0.23deg);
  }
  25% {
    clip: rect(31px, 9999px, 91px, 0);
    transform: skew(0.43deg);
  }
  30% {
    clip: rect(74px, 9999px, 86px, 0);
    transform: skew(0.36deg);
  }
  35% {
    clip: rect(48px, 9999px, 92px, 0);
    transform: skew(0.37deg);
  }
  40% {
    clip: rect(28px, 9999px, 5px, 0);
    transform: skew(0.16deg);
  }
  45% {
    clip: rect(68px, 9999px, 30px, 0);
    transform: skew(0.96deg);
  }
  50% {
    clip: rect(49px, 9999px, 85px, 0);
    transform: skew(0.03deg);
  }
  55% {
    clip: rect(83px, 9999px, 5px, 0);
    transform: skew(0.49deg);
  }
  60% {
    clip: rect(54px, 9999px, 67px, 0);
    transform: skew(0.45deg);
  }
  65% {
    clip: rect(92px, 9999px, 68px, 0);
    transform: skew(0.36deg);
  }
  70% {
    clip: rect(52px, 9999px, 96px, 0);
    transform: skew(0.86deg);
  }
  75% {
    clip: rect(80px, 9999px, 56px, 0);
    transform: skew(0.62deg);
  }
  80% {
    clip: rect(67px, 9999px, 19px, 0);
    transform: skew(0.29deg);
  }
  85% {
    clip: rect(43px, 9999px, 23px, 0);
    transform: skew(0.78deg);
  }
  90% {
    clip: rect(50px, 9999px, 65px, 0);
    transform: skew(0.23deg);
  }
  95% {
    clip: rect(28px, 9999px, 31px, 0);
    transform: skew(0.32deg);
  }
  100% {
    clip: rect(90px, 9999px, 78px, 0);
    transform: skew(0.73deg);
  }
}
@keyframes glitch-skew {
  0% {
    transform: skew(-0.5deg);
  }
  10% {
    transform: skew(-0.5deg);
  }
  20% {
    transform: skew(2deg);
  }
  30% {
    transform: skew(1deg);
  }
  40% {
    transform: skew(-1.5deg);
  }
  50% {
    transform: skew(0deg);
  }
  60% {
    transform: skew(1deg);
  }
  70% {
    transform: skew(1deg);
  }
  80% {
    transform: skew(-2deg);
  }
  90% {
    transform: skew(-2deg);
  }
  100% {
    transform: skew(1deg);
  }
}

/*menu*/

nav {
    display: flex; /* Makes the nav a flex container */
    justify-content: space-between; /* Space between button and menu */
    align-items: center; /* Vertically center items */
    background-color: #f8f9fa; /* Background color for the nav */
    padding: 10px; /* Padding for spacing */
}

/* Styles for the navigation menu */
#nav-menu {
  display: none; /* Hides the menu by default */
  list-style: none; /* Removes bullet points */
  padding: 0; /* Removes padding */
  margin: 0; /* Removes margin */
}

#nav-menu.active {
  display: block; /* Shows the menu when active */
}

.active {
    color: var(--maincolor)!important;
}

/* Navigation link styles */
.nav-link {
  text-decoration: none; /* Removes underline */
  color: #000; /* Link color */
  padding: 10px 15px; /* Spacing around links */
  display: block; /* Makes the links block elements */
}

/* Responsive styles */
@media (min-width: 768px) {
    #menu-btn {
        display: none; /* Hides the button on larger screens */
    }

    #nav-menu {
        display: flex; /* Displays the menu in a row on larger screens */
    }

    #nav-menu.active {
        display: flex; /* Keeps the flex display when active */
    }
}

body{
  overflow-x: none;
  background: rgb(39, 42, 51);
  width: 100vw;
  top: 0;
  position: relative;

  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.05) 2px,
    transparent 1px
  );
  background-size: 10px 20px;
  background-position: 10px 5px;

}
body {
  margin: 0;
}



nav.pagenav {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 300px;
  float: left;
  background: rgba(0, 0, 0, 0.02);
  overflow-y: scroll;
}


/*/ headlines /*/
h1,h2,h3,h4,h5,h6{
  margin: auto;
}

h1 {
  text-align: center;
  text-shadow: 0 5px 3px rgba(0, 0, 0, 0.25);
  margin: 1em 0;
  font-size: 2em;
  font-weight: 300;
}

h2 {
  text-align: center;
  text-shadow: 0 5px 3px rgba(0, 0, 0, 0.25);
  margin: .8em 0;
  font-size: 1.6em;
  font-weight: 300;
}

h3 {
  text-align: center;
  text-shadow: 0 5px 3px rgba(0, 0, 0, 0.25);
  margin: .6em 0;
  font-size: 1.3em;
  font-weight: 300;
}

h4 {
  text-align: center;
  text-shadow: 0 5px 3px rgba(0, 0, 0, 0.25);
  margin: .5em 0;
  font-size: 1.1em;
  font-weight: 300;
}

h5 {
  margin: .4em 0;
  font-size: 1.1em;
  font-weight: 300;
}

/*/ Paragraph /*/
p{
  text-align: center;
  opacity: .6;
  line-height: 1.25em;
}

#home img {
    display: block; /* Make the image a block element */
    margin: 0 auto; /* Center the image */
    width: 200px; 
}


/*/ Quiz! /*/

.quizSubText {
    text-align:center;
  }
  .quiz-button {
    text-align:center;
    border: 2px solid #333;
    width:90px;
    display:block;
    margin:0 auto;
    padding:10px 20px;
    background:#ccc;
  }
  .quiz-button:hover {
    background:#333;
    color:#fff;
  }
  .questionNum {
    font-weight:bold;
    font-size:16px;
  }
  
  
  #quiz-counter {
    color: #d9232d;
  }
  .quiz-container {
      padding: 0.25em;
      max-width: 650px;
      margin: 1em auto;
  }
  
  .quiz-container a {
      text-decoration: none;
      color: #333;
  }
  
  #quiz-header,
  #quiz-start-screen,
  #quiz-results-screen,
  #quiz-counter {
      text-align: center;
  }
  
  .question {
      font-size: 1.25em;
    font-weight:bold;
  }
  
  .answers {
      list-style: none;
      padding: 0;
  }
  
  .answers a {
      display: block;
      padding: 0.5em 1em;
      margin-bottom: 0.5em;
      background: #fff;
      border:2px solid #333;
  }
  
  .answers a.correct {
      background: #090;
  }
  .answers a.incorrect {
      background: #c00;
  }
  
  .answers a.correct,
  .answers a.incorrect {
      color: #fff;
  }
  
  #quiz-controls {
      background: #63c5bc;
      color: #111;
      padding: 0.25em 0.5em 0.5em;
      text-align: center;
  }
  
  #quiz-response {}
  #quiz-results {
      font-size: 1.25em;
  }
  
  #quiz-buttons a,
  .quiz-container .quiz-button {
      display: inline-block;
      padding: 0.5em 1em;
      background: #d9232d;
      color: #fff;
  }
  #quiz-buttons a {
      background: #fff;
      color: #333;
  }
  
  /* Quiz State Overrides */
  
  .quiz-results-state #quiz-controls {
      background: none;
      padding: 0;
  }
  .quiz-results-state #quiz-buttons a {
      background: #d9232d;
      color: #fff;
  }
  
  .showWhyImg {
    display:none;
  }
  
  .question-container img {
      max-width: 650px;
  }
  
  .quiz-container {
      margin-bottom: 100px;
  }