body {
  background-color: black;
  color: #f93156;
  font-family: helvetica-neue;
  margin: 0;
  background-image: url(texture.jpg);
    text-shadow:1px 1px black,
      1px -1px black,
      -1px 1px black,
      -1px -1px black;
}
a:link {
  color: #8dafee;
}
a:visited {
  color: #3d729e;
}
a:active {
  color: hotpink;
}
a:hover {
  color: red;
}
header {
  overflow: hidden;
  position: static;
  padding: 0;
  text-align: center;
  margin:auto;
}
.navbar{
  margin:auto;
  width:max-content;
  position:sticky;
  top:0;
  margin-bottom:50px; 
  background-color:rgba(87, 26, 51, 0.5);
  display:flex;
  justify-content:center;
}
.navbar a {
  margin: 0px;
  text-decoration: none;
  text-transform: uppercase;
  border-top:solid 1px #f93156;
  padding: 10px 14px;
}
/*Sets style for the current page in the navbar, does not apply on homepage*/
#currentpage{
  border:solid 1px #f93156; 
  background-color:#330129;
  border-bottom-right-radius:9px; 
  border-bottom-left-radius:9px;
  border-top:0;
}
/*marking these as important was the only way I could find to make sure it does not break, sorry*/
.navbar a:hover, .navbar a:focus{
  border:solid 1px #f93156 !important; 
  border-top:none !important;
  border-bottom-right-radius:9px; 
  border-bottom-left-radius:9px;
  background-color:#330129 !important;
}
.navbar:hover #currentpage, .navbar:focus-within #currentpage{
  border:none;
  border-top:solid 1px  #f93156;
  background-color:transparent;
}
.hoverablenav a{
  display:inline-block;
}
/*additional nav that apperars when you hover the main one*/
.navbar2 {
  display: none;
  left: 0;
  border-top:1px solid rgba(150, 20, 20 , 0.9);
  position: absolute;
  align-self:center;
  justify-content:center;
  background-color:rgba(87, 26, 51, 0.5);
}
.navbar2 a{
  margin:0;
  border-top:none;
  display:block;
  text-align:center;
}
.navbar2 a:hover{
  border-top:1px solid #f93156 !important;
}
.hoverablenav:hover .navbar2, .hoverablenav:focus-within .navbar2 {
  display: grid;
  width: 1103.9px;
}
.post {
  margin: 60px 0;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: justify;
  line-height: 1.8;
  letter-spacing: 0.8px;
  box-shadow: 10px 5px 10px black;
  border: solid 1px
  
}
.post h3 {
   background-color:#420420; /*funny number (mostly unintentional btw) hehe*/
   padding:5px 10px;
  text-transform: uppercase;
  color: khaki;
  margin:0;
  border-bottom:solid 1px #f93156;
  font-family:monospace;
  letter-spacing:2.75px;
  font-size:1.05rem;
}
.post p {
  padding: 10px 20px;
  margin:0;
}
/*Hover effect for the text*/
.post p:hover, .post li:hover, .post span:hover{
  color:lightsalmon;
  text-shadow:0 0 1px pink;
}
.sidenav{
  Height:750px;
  overflow-y:auto;
  text-align:left;
  position:sticky;
  top:15px;
}
.sidenav a{
  display:block;
  text-decoration:none;
  padding:12px 8px;
  border-left:1px solid rgba(100,100,100,0.5);
}
.sidenav h3{
  border-bottom:1px solid;
  padding:5px;
  margin-bottom:12px;
}
.sidenav a:hover{
  background-color:rgba(130, 25, 45, 0.65);
  border-left: solid 1px red;
}
strong{
  background-color:rgba(255, 69, 0, 0.55);
  color:white;
  border:solid 1px orangered;
  border-radius:5px;
  padding:2px;
}
footer {
  font-size: 0.7rem;
  margin: 10em 2.5em 3em;
  text-align: center;
}
/*This is for clickable summaries, like in the watchlist*/
details > summary{
list-style:none;
cursor:pointer;
}
/*image captions*/
figure{
  border:solid 2px;
  border-radius:9px;
  background-color:black;
  width:min-content;
}
figure img{
  margin:4px;
}
figcaption{
  font-size:0.7rem;
  border-top:solid 1px;
  text-align:center;
}

