html {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #222;
}
body {
  height: fit-content;
}
body::before,
body::after {
  font-weight: bold;
  font-family: "SF Mono", "Courier New", Courier, monospace;
  font-size: 42px;
  color: #ff4473;
}
head {
  display: block;
  background-image: url(r.gif);
  height: 20rem;
  width: 20rem;
  background-repeat: no-repeat;
  background-size: cover;
  border: 5px solid #fff;
  border-radius: 10px;
  border-style: dashed;
  background-clip: content-box;
}
body::before {
  display: inline-block;
  padding-top: 3rem;
  content: "Never gonna give you up...";
}
body::after {
  margin-left: 16px;
  display: inline;
  content: "i";
  background: #ff4473;
  animation: blink 1s infinite;
}
@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
