body {
  accent-color:          hotpink; /* Style form elements in one line */
  overscroll-behavior-y: contain; /* Disable page refresh when pull down is used */
}

body h1 {
  color: black;
}

body .image {
  width:               200px;
  height:              200px;
  background-size:     cover;
  background-image:    var(--image);
  background-repeat:   no-repeat;
  background-position: center;
}

body .buttonBar button {
  color:            black;
  cursor:           pointer;
  margin:           5px;
  padding:          5px 10px;
  border-color:     transparent;
  border-radius:    20px;
  background-color: lightgray;
}

body .buttonBar button:hover {
  color:            white;
  background-color: grey;
}