:root {
  --bgcolor: red;
}

html, body {
  margin: 0;
  height: 100%;
  width: 100%;
}

body {
  background: var(--bgcolor);
  display: flex;
  justify-content: center;
  align-items: center;
}

body:hover input {
  display: block;
}

input {
  display: none;
  height: 50%;
  width: 50%;
}