@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300;600&family=Roboto+Mono&display=swap");
html,
body {
  background-color: black;
  color: whitesmoke;
  font-family: "Roboto Mono", monospace;
  height: 100%;
  margin: 0;
}
h1 {
  font-family: "Kanit", sans-serif;
  margin: 0;
}
p {
  font-size: 0.8em;
  margin: 5px;
}
.container {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  opacity: 0;
}
.coinprice-container {
  display: none;
}