body {
  background-color: black;
  text-align: center;
}
img {
  margin-top: 30px;
  width: 400px;
  opacity: 50%;
}
.socials {
  display: block;
  font-size: 27px;
  margin-top: 24px;
}
a {
  text-decoration: none;
}
.instagram {
  color: transparent;
  background: linear-gradient(225deg, #360a1c, #f504c9 100%);
  background-clip: text;
  margin-right: 10px;
}
.facebook {
  color: transparent;
  background: linear-gradient(
    225deg,
    #0f0b25,
    #32335d 33%,
    #7577a3 67%,
    #c2c3d1 100%
  );
  background-clip: text;
  margin-left: 10px;
}
h1 {
  font-family: "Ovo", serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  margin-top: 25px;
}

.loader {
  width: 40px;
  margin: auto;
  aspect-ratio: 1;
  display: grid;
  -webkit-mask: conic-gradient(from 15deg, #0000, #000);
  animation: l26 2s infinite steps(12);
}
.loader,
.loader:before,
.loader:after {
  background:
    radial-gradient(closest-side at 50% 12.5%, #7968cc 96%, #0000) 50% 0/20% 80%
      repeat-y,
    radial-gradient(closest-side at 12.5% 50%, #7968cc 96%, #0000) 0 50%/80% 20%
      repeat-x;
}
.loader:before,
.loader:after {
  content: "";
  grid-area: 1/1;
  transform: rotate(30deg);
}
.loader:after {
  transform: rotate(60deg);
}

@keyframes l26 {
  100% {
    transform: rotate(1turn);
  }
}

h5 {
  font-family: "Times New Roman", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  margin-top: 70px;
  color: #f5eedc;
  background-image: linear-gradient(225deg, #bcb8d1, #7968cc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.date {
  border: 1px solid #3ffeff;
  margin: auto;
  margin-top: 10px;
  padding: 20px 40px;
  border-radius: 15px;
  box-shadow:
    0 0 8px #fff,
    inset 0 0 8px #fff,
    0 0 16px #3ffeff,
    inset 0 0 8px #3ffeff,
    0 0 16px #3ffeff,
    inset 0 0 16px #3ffeff;
  animation: flicker 1.5s infinite alternate;
}
@keyframes flicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
    box-shadow: 0 0 15px #0ff;
  }
  20%,
  24%,
  55% {
    opacity: 0.7;
    box-shadow: 0 0 5px #0ff;
  }
}
h2 {
  font-family: "Ovo", serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}
hr {
  border: 1px solid #c78bff;
  opacity: 1;
  box-shadow:
    0 0 8px #fff,
    inset 0 0 8px #fff,
    0 0 16px #c78bff,
    inset 0 0 16px #c78bff,
    0 0 32px #c78bff,
    inset 0 0 32px #c78bff;
  animation: flicker 1.5s infinite alternate;
}

@media (max-width: 800px) {
  img {
    width: 300px;
  }
  .date {
    margin: auto;
    margin-top: 20px;
  }
}
