@font-face {
    font-family: "OpenDyslexic";
    font-weight: normal;
    src: url('../fonts/OpenDyslexic-Regular.otf');
}


.site-settings {
  position: sticky !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  padding-top: 10px;
  z-index: 4;
  color: var(--text-color);
  /* background-color: var(--color-2);
  padding: 0px 5px 2px 5px;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
}

.accessible-text {display:none;}
/*tablet*/
@media only screen and (min-width: 600px) {
    .inner {
        max-width: 80%;
    }

    .intro {
        padding-top: 4rem;
        margin-bottom: 4rem;
        line-height: 4rem;
    }
    .accessible-text {display:inline-block;}

}
@media only screen and (min-width: 768px) {
  .site-settings {
    position: fixed;
  }
  

}


.dyslexia-mode {

    * {

        font-family: "OpenDyslexic", monospace !important;
    }
}

:root {
  --color-1: rgb(224, 219, 209);
  --color-2: rgb(112, 112, 112);
}
		 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-2);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: var(--color-1);
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--color-2);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-2);
}

input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
} 