* {
  font-family: "Electrolize", sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  background-color: #222222;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  font-family: "Electrolize", sans-serif;
  font-size: 60px;
  text-shadow: 0px 0px 6px yellow;
  background-color: #222222;
  display: flex;
  padding-bottom: 60px;
}

.title:hover {
  transform: scale(1.05);
}

.bracket {
  color: #ff00ff;
}

.center {
  position: relative;
  animation: neon 6s linear infinite;
}

@keyframes neon {
  0%, 10% {
    color: black;
  }
  12% {
    color: #aa00aa;
  }
  14% {
    color: black;
  }
  16% {
    color: #aa00aa;
  }
  18%, 50% {
    color: black;
  }
  52%, 82% {
    color: #ff00ff;
  }
  98% {
    color: black;
  }
}

.option {
  position: absolute;
  color: #ff00ff;
  font-size: 24px;
  opacity: 0;
  transition: opacity 2s ease, visibility linear 2s;
}

.option.left {
  left: 0;
  top:100%;
}

.option.right {
  right: 0;
  top:100%;
}

.title:hover .option {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0s;
}

.option:hover {
  transform: scale(1.1);
}