body {
  margin: 0;
  padding: 0;   
  background-image: linear-gradient( #0000006c, #0000006c), url(../bg/1646495875316.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-family: system-ui;
  text-transform: capitalize;
  text-align: center;
  color: white;
}
header {
  z-index: 99;
  position: sticky;
  top: 0;
  padding: 15px;
  width: 100%;
  height: 25px;
  background: #0000006c;
  border-bottom: white 2px solid;
  backdrop-filter: blur(5px);
}
header > a {
  padding: 15px;
  height: 100%;
  float: left;
  margin-top: -15px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition-duration: 0.5s;
}
header > a:hover {
  background: #FF0000AF;
  text-decoration: underline;
  transition-duration: 0.5s;
}
.active {
  background: #FF0000AF;
}
.dl,.drop {
  text-decoration: none;
  font-weight: bold;
  background: #008000;
  padding: 5px;
  color: white; 
  border-radius: 5px;
  border: 2px solid #008000;
  transition-duration: 0.2s;
}
.dropdlshow {
  position: relative;
  display: inline-block;
}
.dropdl{
  border: 1px solid white;
  border-radius: 5px;
  width: auto;
  font-size: 14px;
  backdrop-filter: blur(10px);
  display: none;
  margin: 5px;
}
.dropdl a {
  margin: 5px;
  text-decoration: none;
  color: white;
  display: block;
}
.dropdlshow:hover .dropdl {
  display: block;
}
.dl:hover {
  background: #005B00;
  transition-duration: 0.2s;
}
.items {
  margin: 5px;
  display: inline-block;
  padding: 20px;
  width: 25%;
  border: 2px solid white;
  border-radius: 5px;
  background: #0000006c;
  backdrop-filter: blur(10px);
}
img {
  width: 100%;
}
.dropdl a:hover {
  text-decoration: underline;
}
/* mobile view (soon) */
@media only screen and (max-width: 600px) {
  html,body {
    font-size: small;
    overflow-x: hidden;
  }
  header {
    margin-top: -2.5%;
    margin-left: -2.5%;
    position: sticky;
  }
  .items {
    backdrop-filter: blur(5px);
    padding: 10px;
    width: 40%;
  }
}
