body {
  background: #000;
  color: #fff;
  font-family: Arial;
  padding: 0px;
  margin: auto;
}

.collection {
  width: 900px;
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 20px;
  margin: 0px 0px 0px 5rem;
}
  
.home-col {
  margin: auto;
  background: url(/img/bg.png);
  background-size: 100%;
  width: 1080px;
  height: 810px;
  text-align: center;
}

.home-col a {
  display: block;
  scroll-behavior: smooth;
}

.date-header {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem;
  max-width: 900px;
  min-height: 2rem;
  position: relative;
}

.date-header .date-heading,  .date-header hr {
  position: absolute;
  top: 0;
}

.date-header hr {
  margin-top: 0.9rem;
}

.post {
  margin: auto;
  max-width: 900px;
  padding: 1rem;
}

.postbody {
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}

hr {
  background: #fff;
  border: none;
  border-top-width: medium;
  border-top-style: none;
  border-top-color: currentcolor;
  border-top: 3px solid #ff7a7a;
  box-shadow: 0 2px 4px rgba(255,0,0,.7),0 0 8px rgba(255,0,0,.02);
  display: block;
  height: 0;
  margin: 2em 0 1em;
  margin-top: 2em;
  width: 85%;
  z-index: 4;
}

.title {
  display: inline-block;
  filter: blur(.1px);
  position: relative;
  text-shadow: 1px 0 3px rgba(0,0,0,.08),2px 0 4px rgba(0,0,0,.06);
}

.date-heading {
  background: linear-gradient(#ff0000,#ff5050);
  color:#efefef;
  box-shadow: 0 2px 6px rgba(255,0,0,.7),0 0 8px rgba(255,0,0,.12);
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin: auto;
  margin-bottom: auto;
  max-width: 930px;
  padding: .4rem .8rem;
  z-index: 5;
}

a {
  color: white;
  scroll-behavior: smooth;
  
}

.signature {
  color: red;
  font-family:monospace;
  font-weight: bolder;
  font-size: 1.3rem;
}

.postcont {
  white-space: pre-wrap;
}

footer {
  position: fixed;
  bottom: 0px;
  left:0px;
  background: #050505;
  width: 100%;
  padding-left: 10px;
  box-shadow: 0 2px 6px rgba(255,255,255,1),0 0 8px rgba(255,255,255,.3);
  z-index: 6;
}

header {
  text-align: center;
  margin: 16px auto;
  width: 1500px;
  * {
  margin: 0px;
  padding: 0pxs;
  }
}

.invert {
  transition: 0.3s;
}

.invert:hover {
  filter: invert(1);
}

.secret-text {
  transition: 1s;
  text-shadow: 0 0px 6px rgba(0,0,0,1),0 0 12px rgba(0,0,0,.3);
}

.secret-text:hover {
  filter: invert(1);
  text-shadow: 0 0px 1px rgba(0,0,0,1),0 0 2px rgba(0,0,0,.3);
}

.home-col .invert {
  font-size: 20px;
  margin-bottom: 15px;
}





/* calendar */
.wrapper {
  width: 300px;
  height: 100%;
  background: linear-gradient(90deg,#0d0d0f,#101010);
  border-right: 1px solid black;
  border-top: 1px solid black;
  align-items: center;
  padding: 15px;
  margin: auto;
}

.current-date {
  color: #bfc8b7;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black,
  0 0 2px black, 1px 2px 3px black, 0 0 2px black;
  font-size: 25px;
  letter-spacing: -1px;
  margin-top: -10px;
  margin-bottom: 15px;
  margin-left: -10px;
}

.calendar {
  margin: -10px;
  padding: 5px;
  background: linear-gradient(0deg,#555,#101010);
  height: 100%;
  background-size: fit;
}

.calendar ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
  margin-left: -35px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.calendar .days {
  margin-bottom: 10px;
  color: #eee;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black,
  0 0 2px black, 1px 2px 3px black, 0 0 2px black;
}

.calendar li {
  color: #333;
  width: calc(100% / 7);
  font-size: 17px;
}

.calendar .weeks li {
  cursor: default;
  color: #ff4242;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black,
  0 0 2px black, 1px 2px 3px black, 0 0 2px black;
}

.calendar .days li {
  z-index: 1;
  cursor: pointer;
  position: relative;
  margin-top: 5px;
  color: #eee;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black,
  0 0 2px black, 1px 2px 3px black, 0 0 2px black;
}

.days li.inactive {
  color: #777;
}

.days li.active {
  color: #fff;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black,
  0 0 2px black, 1px 2px 3px black, 0 0 2px black;
}

.days li::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 30px;
  width: 30px;
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.days li.active::before {
  background: #73a57480;
}

.days li:not(.active):hover::before {
  background: #bfc8b780;
}

.sideimg {
  float:right;
  width:600px;
  position: absolute;
  right: 100px;
  z-index:-1;
}

.releases-col {
  background: url(/img/bg2.png);
  background-position: center;
  border-color: #eee;
  border: 2px solid #eee;
  margin: 0px auto 50px auto;
  padding: 0px 10px 0px 10px;
  width: 900px;
  text-shadow: 0 5px 4px rgba(0,0,0,1),0 0 8px rgba(0,0,0,1);
  overflow-y: scroll;
}

.highlight {
  background: #eee;
  color: #101010;
  padding: 0px 5px;
}

.date-header:target {
  margin-top:10px;
}

.sidemenu {
  background-color: rgba(255, 255, 0, 0.1);
  backdrop-filter: blur(4px) brightness(60%);
  padding: 20px;
  margin-right: 50px;
  float:right;
  text-align: right;
  max-width: 200px;
  
  a {
    transition: 0.3s;
    font-size: 18px;
    padding: 5px;
    text-decoration: none;
  }
  
  a:hover {
    backdrop-filter: invert(100%);
  }
}