button {
  height: 150px;
  width: 300px;
  padding: 10px 50px;
  margin-top: 30px;
  background: #0d7df5;
  color: white;
  font-size: 30px;
  border-radius: 50px;
  border: 5px solid lightgray;
}

/**************************************/
/* Color, Body and Container Settings */
/**************************************/

/* Center shapes */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Set container and optional light gray border */
.container {
  width: 500px;
  height: 500px;
  border: 5px solid lightgray;
  background: transparent;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 1px;
}