*{
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
}
body {
	background: #000;
  background-image: url('./reflection.png');
  align-items: center;
  overflow: hidden;
  color: #fff;
  font-family: sans-serif;
  height: 100vh;
}

h1 {
  font-size: 4rem;
}

.container {
  justify-content: center; /* Horizontal centering */
  align-items: center; /* Vertical centering */
  height: 100%;
  text-align: center;
  display: grid;
  place-content: center;
}

.title {
	padding-bottom: 25px;
	text-align: center;
	display: grid;
	place-content: center;
	justify-content: center; /* Horizontal centering */
	align-items: center; /* Vertical centering */
}

.cursor {
  width: 10rem;
  height: 10rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  mix-blend-mode: difference;
	pointer-events: none;
}

.buttonlink {
  transition: background-color 0.2s ease;
  padding: 10px 20px;
  background-color: white;
  color: black;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 5px;
}

.buttonlink:hover {
	background-color: rgb(197, 197, 197);
}