html, body {
  margin: 0;
  padding: 0;
}

body {
  display: table;
  position: absolute;

  height: 100%;
  width: 100%;

  background: #000;
}

.band-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  letter-spacing: 0.15em;
  text-align: center;
  color: #eee;
  margin: 80px auto;
  position: relative;
  width: fit-content;
}

.band-name::before,
.band-name::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 10px;
  background-color: #eee;
}

.band-name::before {
  top: -20px;
}

.band-name::after {
  bottom: -20px;
}
