:root {
  /* COLORS */

  --realwhite: #ffffff;
  --realblack: #000000;

  /* NAVIGATION */

  --burgericon: url(/assets/images/burger.svg);
  --closeicon: url(/assets/images/close.svg);
}

html {
  font-size: 16px;
}

body {
  background: #fff89e;
  font: "Open Sans", sans-serif;
  cursor: url("images/cursor.png"), auto;
}

@font-face {
  font-family: Nunito;
  src: url("/assets/fonts/Nunito-VariableFont_wght.ttf");
}

h1,
h2,
h3,
h4,
h5,
p,
dt,
dd {
  font-family: Nunito;
}

p {
  font-size: 1rem;
}

.box1 {
  border: none;
  width: 1000px !important;
  max-width: 100%;
  margin: 0 0 20px 0;
  padding: 40px;
  background-color: rgb(255, 255, 255);
}

.box {
  border: none;
  max-width: 1000px !important;
  margin: 0 0 20px 0;
  padding: 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 0px 3px rgba(148, 0, 211, 1),
    0px 0px 0px 6px rgba(75, 0, 130, 1), 0px 0px 0px 9px rgba(0, 0, 255, 1),
    0px 0px 0px 12px rgba(0, 255, 0, 1), 0px 0px 0px 15px rgba(255, 255, 0, 1),
    0px 0px 0px 18px rgba(255, 127, 0, 1), 0px 0px 0px 21px rgba(255, 0, 0, 1);
}

/* FONT */

h1 {
  text-transform: uppercase;
  font: 700 100px "Montserrat", sans-serif;
  margin-top: 0px;
  margin-left: 10px;
  margin-bottom: 0px;
  padding: 5px;
}

footer p,
a {
  color: rgb(0, 117, 212);
}

.bigger {
  font-size: 2.5rem;
}

.rainbow {
  background: linear-gradient(to right,
      #ef5350,
      #f48fb1,
      #7e57c2,
      #2196f3,
      #26c6da,
      #43a047,
      #eeff41,
      #f9a825,
      #ff5722);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rainbow2 {
  background-image: radial-gradient(circle,
      violet,
      indigo,
      blue,
      green,
      yellow,
      orange,
      red);
  color: transparent;
  -webkit-background-clip: text;
}

/* PAGES / PAGINATION */

ul.pages {
  display: flex;
  list-style: none;
  margin: 10px auto;
  justify-content: center;
}

ul.pages li {
  width: 30px;
  height: 30px;
  text-align: center;
  margin: 0 1px 0 0;
  line-height: 30px;
}

@media (min-width: 1025px) {
  ul.pages li {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

ul.pages li a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff89e;
  border: 1px solid rgb(0, 117, 212);
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

ul.pages li.active {
  background: rgb(0, 117, 212);
  color: white;
  /*border: 1px solid var(--primary-color);*/
}

ul.pages li.page a:hover {
  background: rgb(0, 117, 212);
  color: white;
  /*border: 1px solid var(--primary-color);*/
  transition: 0.3s ease;
}

/* NAVIGATION */

.navi {
  font-size: 1.5rem;
  color: white !important;
  font-weight: bold;
  text-shadow: rgb(0, 102, 255) 1px 0 10px;
  text-decoration: none;
}

.navi:hover {
  text-shadow: rgb(255, 1, 1) 1px 0 10px;
  text-decoration: none;
}

/*.dropdown-menu {
  z-index: 1500 !important;
}*/

/*.dropdown-item:active {
  background-color: var(--primary-color) !important;
}*/

/* mobile navigation */

#burger {
  width: 100%;
  background: rgb(0, 117, 212);
  position: fixed;
  z-index: 1300;
}

#burger summary {
  list-style-type: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--realwhite);
  /*text-shadow: var(--primary-color) 1px 0 10px;*/
  padding: 5px;
}

#burger summary::before,
#burger[open]>summary::before {
  height: 40px;
  width: 40px;
  background: var(--realwhite);
}

#burger summary::-webkit-details-marker {
  display: none;
}

#burger summary::before {
  content: '';
  mask-image: var(--burgericon);
  -webkit-mask-image: var(--burgericon);
  mask-size: 40px;
  -webkit-mask-size: 40px;
}

#burger[open]>summary::before {
  content: '';
  mask-image: var(--closeicon);
  -webkit-mask-image: var(--closeicon);
  mask-size: 40px;
  -webkit-mask-size: 40px;
}

#burger[open] {
  position: fixed;
}

.skip a {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip a:focus {
  position: static;
  width: auto;
  height: auto;
}

#burger #menu {
  height: calc(100vh - 50px);
  z-index: 1000;
  position: relative;
  overflow: auto;
  /* background:rgba(0, 0, 0, 0.74);*/
}

#burger #menu ul {
  list-style: none;
  margin-left: 50px;
  text-align: left;
  padding-left: 0px;
}

.dropdown-item {
  text-shadow: none !important;
}

/* UPDATES */

.updates li {
  margin-bottom: 10px;
}

.updates li:last-child {
  margin-bottom: 0px;
}

dt {
  color: rgb(0, 117, 212);
  font-weight: 700;
  float: left;
  clear: both;
  margin: 0 0 5px;
  width: 150px;
}

dd {
  border-bottom: 1px dotted #0011f8;
  margin: 0 0 5px 160px;
}

/* STREAMS IMAGES */

figure {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  text-align: center;
}

figure:hover+span {
  bottom: -36px;
  opacity: 1;
}

.hover01 figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.hover01 figure:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.hover01 h4 {
  margin-top: 5px;
}

/* FILTERS */

.filters ul {
  padding: 0;
  display: flex;
  border-bottom: 2px solid #D9D9D9;
  justify-content: center;
}

.filters li {
  list-style-type: none;
  display: inline-block;
  text-transform: uppercase;
}

.filters li a {
  color: var(--font);
  margin: 0 5px;
  text-decoration: none;
}

.filters ul b {
  margin: 0 5px;
}

.selected {
  font-weight: bold;
  border-bottom: 2px solid rgb(0, 102, 255);
}

/* SORTING */

.sorting2 ul {
  padding: 0;
  display: flex;
  border-bottom: 2px solid #D9D9D9;
  justify-content: center;
}

.sorting2 li {
  list-style-type: none;
  display: inline-block;
  text-transform: uppercase;
}

.sorting2 li a {
  color: var(--font);
  margin: 0 5px;
  text-decoration: none;
}

.sorting2 ul b {
  margin: 0 5px;
}

#sorting {
  text-align: center;
}

#sorting button {
  border: 1px solid;
  background: none;
  /* padding: 5px 10px 5px 10px;*/
  margin-top: 0px;
  margin-bottom: 10px;
}

#sorting .selected {
  color: rgb(0, 102, 255);
  font-weight: 600;
}

/* FONT */

.hover01 a {
  margin-bottom: 0px;
  /*text-decoration: none;
  color: black;*/
}

.hover01 h4 {
  font-weight: 450;
}

.date {
  font-style: italic;
  margin: 0px;
}

.item {
  margin-top: 5px;
  margin-bottom: 5px;
}

img {
  max-width: 100%;
}

/* RESPONSIVENESS */

@media all and (min-width: 600px) {
  .menu-button {
    display: none;
  }

  #burger {
    display: none;
  }
}

@media all and (max-width: 600px) {
  .nav {
    display: none;
  }

  .overlay {
    height: 100%;
  }

  #burger {
    visibility: visible;
  }

  .nav-mobile {
    visibility: visible;
  }

  .menu-button {
    visibility: visible;
  }

  #top {
    margin-top: 50px;
  }

  dt {
    float: none;
    clear: none;
    width: auto
  }

  dd {
    margin-left: 20px;
  }
}

@media screen and (max-width: 420px) {
  h1 {
    font-size: 4.375rem !important;
  }
}

@media all and (max-width: 400px) {
  .box2 {
    max-width: 360px;
  }
}