body {
  background: black;
  color: white;
  font-family: Arial;
}

.filters {
  display: flex;
  gap: 10px;
  margin: 20px;
}

select,
input {
  padding: 10px;
  font-size: 16px;
}

#contentContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.post {
  width: 250px;
  margin: 10px;
  padding: 10px;
}

video {
  border: none;
  outline: none;
  display: block;
}

.post video,
.post img {
  width: 100%;
  border-radius: 12px;
}
#openLore {
  width: auto;
  padding: 10px 14px;
}

#loreWindow {
  display: none;

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: transparent;

  justify-content: center;
  align-items: center;

  z-index: 1000;
}

.loreContent {
  background: transparent;

  color: white;

  padding: 40px;

  width: 60%;
  max-width: 700px;

  text-align: center;

  font-size: 20px;

  max-height: 80vh;
overflow-y: auto;
}

#closeLore {
  float: right;
  font-size: 32px;
  cursor: pointer;
}
.text-post {
  background: transparent;
  color: white;
  padding: 20px;
  max-width: 700px;
  margin: 20px auto;
}

.text-post h2 {
  margin-top: 0;
}

.text-content {
  line-height: 1.6;
}
.loreLink{
  cursor:none;
  transition:0.2s;
}

.loreLink:hover{

  color:#9fd4ff;

  text-shadow:
    0 0 5px #9fd4ff,
    0 0 10px #9fd4ff,
    0 0 20px #9fd4ff;
}
#sparkleCursor{
  width:20px;
  height:20px;

  border-radius:50%;

  position:fixed;
  pointer-events:none;

  background:white;

  box-shadow:
    0 0 5px white,
    0 0 10px #9fd4ff,
    0 0 20px #9fd4ff,
    0 0 40px #9fd4ff;

  transform:translate(-50%, -50%);

  z-index:9999;

  display:none;
}
