* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  color: #fff;
  font-size: 1rem;
  width: 250px;
  padding: 5px 10px;
  border: none;
  border-radius: 10px 30px 10px 30px;
  background-image: linear-gradient(135deg, #175fba, #c22d37);
}
button:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: 0.5s;
}

div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

p {
  margin-top: 5px;
  font-size: 1rem;
  color: #fff;
}
