@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Sofia+Sans+Extra+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #000;
  font-family: Rubik;
}
.bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-image: url("/img/covers/dangerdays.jpg");
  background-position: center;
  background-size: cover;
  filter: blur(0.5vw);
  z-index: -1;
  opacity: 1;
}
.parent {
  width: 100%;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 0 5px #00000090);
}
.main {
  width: 512px;
  height: fit-content;
  max-width: 100%;
}
.slide {
  background-color: #efefef;
  margin-top: 10px;
  max-height: 256px;
  overflow-y: scroll;
  scrollbar-width: none;
  position: relative;
}
.header {
  position: sticky;
  top: 0;
  background-color: rgb(255, 0, 115);
  color: #fff;
  font-family: "Sofia Sans Extra Condensed";
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  font-style: italic;
  padding: 2px 0 0 8px;
  border-bottom: solid 5px #00000020;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  overflow: hidden;
}
.header img {
  height: 50px;
  padding: 5px;
  filter: invert(1) contrast(0) brightness(100);
  transform: scale(2) rotate(10deg);
}
.content {
  padding: 5px;
}
.links {
  padding: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: space-between;
  flex-wrap: wrap;
}
.link {
  background-color: #00000010;
  padding: 10px;
  color: #000;
  text-decoration: none;
  border: solid 2px #00000000;
  margin: 0 0 5px 0;
}
.link:hover {
  background-color: #00000015;
  border: solid 2px #00000008;
}
.spacer {
  height: 0px;
}
iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.smallHeader {
  transform: translate(5px, 7px);
}
