@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Michroma&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Michroma;
}

body{
  overflow: hidden;
  background-color: black;
}

.container{
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

h1{
  position: absolute;
  top: -3%;
  color: white;
  font-size: 4.5em;
  margin: 1em;
  text-shadow: 0 0 0 white;
  animation: textGlow 2s ease-in infinite;
}

@keyframes textGlow{
  50%{
    text-shadow: 0 0 35px white;
  }
}

ul{
  position: absolute;
  text-align: center;
  list-style: none;
  z-index: 2;
}


a{
  display: block;
  position: relative;
  color: white;
  font-size: 2.2em;
  padding: .5em 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: .15s ease;
  transition-delay: .15s;
  &:hover{
    letter-spacing: 8px;
    text-shadow: 0 0 10px #ff0055,
                 0 0 20px #ff0055,
                 0 0 30px #ff0055;
  }
  &::before,
  &::after{
    position: absolute;
    content: '';
    width: 20%;
    height: 2px;
    background:#ff0055;
    top: 45%;
    /* left: 41%; */
    transform: translateX(-50%);
    box-shadow: 0 9px 0 0 #ff0055;;
    z-index: -1;
    transition: .2s ease;
  }
  &:hover::before,
  &:hover::after{
    width: 0%;
  }
}

.images{
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;

  z-index: 0;
}
img{
  position: absolute;
  height: inherit;
  width: inherit;
  filter: brightness(35%);
  display: none;
  object-fit: contain;
  z-index: 0;
}