	body {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  margin: 0;
	  background-color: #000;
	}
	ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100vh;
}

li {
  position: relative;
  margin: 10px 0;
  overflow: hidden;
}

.gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.81) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

li:hover .gradient {
  opacity: 1;
}

a.menu-link {
  display: block;
  position: relative;
  z-index: 1;
  padding: 15px;
  color: rgba(30, 30, 30,1);
  text-align: center;
  font-size: 30px;
  text-decoration: none;
  transition: color 1s ease-in-out;
  border-radius: 5px;
}

li:hover a.menu-link {
  color: white;
}

	body {
	  min-height: 100vh;
	  min-width: 100vh;
	  background: radial-gradient(ellipse 75% 70%, rgba(125, 125, 125, 1) 0%, rgba(0, 0, 0, 1) 75%);
	  overflow: hidden;
	}
	::-webkit-scrollbar {
	  display: none;
	}