body {
  margin: 0px;
  background-color: black;
}
.background {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  filter: brightness(0.3);
}
.site {
  text-align: center;
}
.title {
  background-color: #00000040;
  min-width: 70%;
  width: fit-content;
  box-align: center;
  margin-top: 15px;
  padding: 8px;
  border-radius: 20px;
  text-align: center;
  display: inline-block;
}
.logs {

}
.log {
  background-color: #00000040;
  min-width: 70%;
  max-width: 70%;
  width: fit-content;
  box-align: center;
  margin-top: 15px;
  padding: 8px;
  border-radius: 20px;
  text-align: center;
  display: inline-block;
  text-align: left;
}
.log:hover {
  background-color: #00000080;
  transition: 0.3s;
}
h1 {
  color: white;
  font-family: monospace;
  font-size: 33px;
}
h5 {
  color: white;
  padding: 0px;
  margin-top: 7px;
  margin-bottom: 12px;
  font-size: 24px;
  font-family: monospace;
}
.date {
  color: #D9D9D9;
  font-family: monospace;
  margin-bottom: 8px;
}
.visitors {
  display: flex;
  gap: 6px;
}
.visitor {
  gap: 5px;
  padding-right: 8px;
  align-items: center;
  display: flex;
  border-radius: 12px;
  transition: 0.3s;
  font-family: sans-serif;
}
.visitor:hover {
  transform: scale(1.3);
  transition: 0.3s;
}
.tags {
  display: flex;
  margin-bottom: 6px;
}
.tag {
  padding: 6px;
  border-radius: 5px;
  font-family: monospace;
  font-size: 14px;
  transition: 0.3s;
  cursor: default;
}
.tag:hover {
  font-weight: bold;
  transition: 0.3s;
}
#visitorpfp {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  transition: 0.3s;
}
#visitorpfp:hover {
  transform: scale(2);
  transition: 0.3s;
  padding-right: 8px;
}
#logtext {
  color: white;
  font-size: 17px;
  font-family: monospace;
}
.end {
  height: 30px;
}
