@font-face {
  font-family: "UbuntuMono";
  src: url("fonts/UbuntuMono-Regular.ttf") format("truetype");
}

body {
  background-color: lightsalmon;
  color: black;
  font-family: "UbuntuMono", monospace;
}

header {
  background-color: lightsalmon;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 20px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}

a {
  font-weight: bold;
  text-underline-offset: 4px;
}

.arith {
  th {
    text-align: right;
  }

  td {
    text-align: left;
  }
}

.global-top-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.glyph-search-results-div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.glyph-box {
  border: 1px solid black;
  background-color: white;
  border-radius: 25px;
  width: 120px;
  height: 180px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.glyph-details-content {
  border: 1px solid black;
  background-color: white;
  border-radius: 25px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  th {
    text-align: right;
  }

  td {
    text-align: left;
  }
}

.glyph-box-table {
  th {
    text-align: right;
  }

  td {
    text-align: left;
  }
}


.sg-articles-content {
  border: 1px solid black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  table {
    border-spacing: 20px 0px;
  }

  th {
    text-align: center;
  }

  td {
    text-align: center;
  }
}


.sg-article-content p {
  line-height: 30px;
}

.img-hbox {
  height: 200px;

  gap: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}