/* css/index.css */
html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: #020202;
  cursor: crosshair;
  font-family: Arial, Helvetica, sans-serif;
}

.enter-screen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enter-button {
  color: white;
  text-decoration: none;
  border: 1px solid white;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: 4px;
  transition: 0.25s ease;
}

.enter-button:hover {
  background: white;
  color: black;
}