@import url("https://fonts.googleapis.com/css2?family=Mulish&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Mulish", sans-serif;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  background-image: linear-gradient(90deg, #ff4331, #d31a50);
}

button {
  background-color: rgba(0, 0, 0, 0.2);
  border: 0;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 20px;
  cursor: pointer;
}

button:focus {
  outline: 0;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
