body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  color: white;
  background-color: #2b2b2b;
}

.center {
  display: flex;
  align-items: center;
}

img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-right: 25px;
  border-radius: 50%;
}

.title {
  font-size: 72px;
  position: relative;
  cursor: default;
  display: inline-block;
}

/* flashlight inside text */
.flashlight {
  position: absolute;
  width: 120px; /* diameter of flashlight */
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-out;
}
