* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.h1-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: black;
  transition: background 1s 0.5s;
  z-index: 10;
}

.loaded .h1-wrapper {
  background: transparent;
}

h1,
span {
  color: white;
  transform: translateY(-150px);
}

h1 {
  font-family: serif;
  letter-spacing: .1em;
}

span {
  font-size: 12px;
  letter-spacing: .5em;
  text-transform: uppercase;
}

#bg {
  position: relative;
  z-index: 2;
}

.ul-wrapper {
  position: absolute;
  z-index: 10;
  bottom: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}

ul {
  display: grid;
  gap: 20px;
  grid-template-columns: auto auto auto auto;
}

li {
  list-style-type: none;
}

li a {
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .2em;
  color: white;
}