* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*align-items: center;*/
  height: 100vh;
  text-align: center;
  background-color: #f5f5f7;
}
h1 {
  font-size: 35px;
}
p {
  font-size: 22px;
  padding: 15px;
}
button {
  padding: 10px 20px;
  border-radius: 20px;
  border: 0;
  border: 1px solid #0376df;
  cursor: pointer;
}
.btn-1 {
  background: #0376df;
  color: #fff;
}
.btn-2 {
  background: transparent;
  color: #0376df;
  margin-left: 10px;
}
.btn-1:hover {
  background-color: #fff;
  color: #0376df;
}
.btn-2:hover {
  background-color: #0376df;
  color: #fff;
}
