* {
  background-color: rgb(2, 2, 12);
  color: white;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.page {
  position: absolute;
  top: 20vh;
  min-width: 60vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 0.5px solid white;
  padding: 4rem;
  border-radius: 4px;
}

input {
  min-width: 40vw;
  height: 2rem;
  border-radius: 3px;
  background-color: antiquewhite;
  border: 1px solid blue;
  color: black;
}

button {
  background-color: rgb(71, 149, 175);
  border: transparent;
  padding: 0.6rem;
  border-radius: 5px;
}

button:hover {
  cursor: pointer;
}
