*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 62.5%;
}

@font-face {
  font-family: "Inter";
  src: url(Inter/Inter-VariableFont_opsz\wght.ttf);
}

main {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  font-family: "Inter";
  background-color: hsl(207, 95%, 8%);
  color: hsl(0, 0%, 100%);
  text-align: center;
}

h1 {
  font-size: 45px;
}

input {
  width: 75px;
  height: 50px;
  font-size: 45px;
  border-radius: 10px;
  margin: 10px;
  background-color: white;
  color: black;
  border-style: none;
}

.button {
  transition: background-color 300ms ease-in;
  cursor: pointer;
}
.button:hover {
  background-color: yellow;
}
