* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
main {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
body {
  background-color: antiquewhite;
  margin: 0;
  height: 100vh;
}
h1 {
  color: white;
  font-style: bold;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  margin: 0px;
}
h2 {
  color: white;
  font-size: 20px;
  font-weight: 100;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
p {
  color: white;
  font-size: 15px;
  text-align: center;
  margin-left: 20px;
}

Button {
  padding: 10px;
  border: none;
  border-radius: 14px;
  background-color: darkcyan;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

input {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 10px;
  color: white;
}

form {
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
