.back-home {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.back-home-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(4,5,14,.55);
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.back-home:hover .back-home-icon {
  background: rgba(4,5,14,.8);
  border-color: rgba(255,255,255,.5);
}
.back-home svg {
  width: 18px;
  height: 18px;
  stroke: #F3EEFF;
}
.back-home-label {
  color: #F3EEFF;
  font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .03em;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
  white-space: nowrap;
  opacity: .9;
}