canvas#responsive-canvas {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
}

.controls {
  position: absolute;
  width: 100px;
  background-color: seashell;
  padding: 6px;
  border-radius: 16px;
  bottom: 50px;
  right: 50px;
}

.loading {
  height: 102%;
  width: 102%;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  background-color: rgb(190, 190, 190);
  font-family: "Montserrat", sans-serif;
  font-size: 10pt;
}

.contact-links {
  width: 100%;
  display: flex;
  flex-direction: column;
}

button {
  width: 100%;
  border: 2px solid black;
  border-radius: 10px;
  background-color: white;
  color: black;
  padding: 4px 4px;
  font-size: 12px;
  cursor: pointer;
}

h3 {
  line-height: 1;
  padding-bottom: 12px;
}

svg {
  padding-right: 10px;
  padding-top: 12px;
}

a {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-height: 36px;
  text-decoration: none;
  color: black;
}

.info {
  position: fixed;
  width: 310px;
  background-color: seashell;
  padding: 0px 12px 20px 12px;
  border-radius: 16px;
  top: 50px;
  left: 50px;
}

.italics {
  font-size: 12px;
}

@media (max-width: 430px) {
  body {
    font-size: 8pt;
    min-width: 290px;
  }
  .info {
    width: auto;
  }
  .controls {
    width: auto;
  }
  h3 {
    line-height: 1;
    padding-bottom: 6px;
  }
  svg {
    padding-right: 12px;
    padding-top: 6px;
  }
  .italics {
    visibility: hidden;
  }
}
