.title {
  color: white;
  background-color:#3f51b5;
  min-height: 64px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: relative;
  align-items: center;
  font-size: 1.25rem;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.0075em;
  box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
}

.button {
  color: #fff;
  background-color: #1976d2;
  display       : inline-flex;
  border-radius : 4px;
  font-size     : 0.875rem;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 500;
  min-width: 64px;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  text-align    : center;
  text-decoration:none; 
  border: 0;
  cursor        : pointer;
  outline: 0;
  user-select: none;
  padding       : 6px 16px;
  margin: 24px;
  line-height: 1.75;
  opacity       : 0.9;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  box-sizing: border-box;
  box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
}
.button:hover {
  opacity       : 1;
}