html, body {
    font-family: Vipnagorgialla;
}

#button-container {
    background-color: black;
    color: white;
    border-radius: 20px;
    font-size: small;
    line-height: 1.8;
}

ul {
    padding-left: 15px;
    padding-right: 15px;
}

li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* css to make buttons look like links
thanks to torben on stackexchange 
https://stackoverflow.com/a/12642009/4634137 */

.link-button {
  align-items: normal;
  background-color: rgba(0,0,0,0);
  border-color: rgb(0, 0, 238);
  border-style: none;
  box-sizing: content-box;
  color: rgb(0, 0, 238); 
  cursor: pointer;
  display: inline;
  font: inherit;
  height: auto;
  padding: 0;
  perspective-origin: 0 0;
  text-align: start;
  text-decoration: underline;
  transform-origin: 0 0;
  width: auto;
  -moz-appearance: none;
  -webkit-logical-height: 1em; /* Chrome ignores auto, so we have to use this hack to set the correct height  */
  -webkit-logical-width: auto; /* Chrome ignores auto, but here for completeness */
}

/* Mozilla uses a pseudo-element to show focus on buttons, */
/* but anchors are highlighted via the focus pseudo-class. */

@supports (-moz-appearance:none) { /* Mozilla-only */
  .link-button::-moz-focus-inner { /* reset any predefined properties */ 
    border: none;
    padding: 0;
  }
  .link-button:focus { /* add outline to focus pseudo-class */
    outline-style: dotted;
    outline-width: 1px;
  }
}

/* my css to customize the above */

.link-button {
    border-color: rgb(44, 128, 255);
    color:rgb(44, 128, 255);
}

.link-button-clicked {
    color: #A51AAB;
}