html,
body {
  height: 100%;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

button {
  height: auto;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

body {
  background-color: rgb(70, 70, 70);
}

p,
div {
  color: rgb(255, 255, 255);
  font-size: 20px;
}

button {
  background-color: black;
  color: rgb(255, 255, 255);
  border-radius: 50px;
  cursor: pointer;
  padding: 10px;
  margin-bottom: 5px;
}

input {
  border-radius: 50px;
  cursor: pointer;
  padding: 10px;
  margin-bottom: 5px;
  background-color: black;
  color: white;
}

button:hover {
  background-color: rgb(38, 38, 38);
  color: rgb(255, 255, 255);
}


.whole-thing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

