body,
html {
  margin: 0;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}

.wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: black;
}

.heading {
  color: white;
  font-size: 40px;
  font-weight: 600;
}

.button {
  padding: 15px 30px;
  background-color: aliceblue;
  color: black;
  border: 1px solid red;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 20px;
  font-weight: 600;
}

.button:hover {
  background-color: grey;
}
