@charset "UTF-8";
* {
  --color-green-white: #fafcfa;
  --color-green-black: #04100c;
  --color-green-7: #173a2c;
  --color-green-6: #2b644a;
  --color-green-5: #38805f;
  --color-green-4: #48ad7e;
  --color-green-3: #6ec499;
  --color-green-2: #99d6b5;
  --color-green-1: #c4e9d1;
  --default-font: "Tahoma", sans-serif;
}

html,
body,
#root {
  min-height: 100%;
  min-width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  font-size: 18px;
  background-color: var(--color-green-white);
  font-family: var(--default-font);
  color: var(--color-green-black);
}

a {
  color: var(--color-green-6);
  text-decoration: none;
}
a:hover, a:active, a:visited, a:focus {
  text-decoration: underline;
}

.center {
  text-align: center;
}

.ipa {
  font-family: "DoulosSILW", sans-serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (width > 800px) {
  .sr-view {
    display: none;
  }
  .desktop-view {
    display: unset;
  }
}
@media (width <= 800px) {
  .sr-view {
    display: unset;
  }
  .desktop-view {
    display: none;
  }
}
.center {
  text-align: center;
}

article {
  text-align: justify;
  max-width: 840px;
  display: inline-block;
  margin: 0 20px;
}
article p {
  text-indent: 15px;
}
article h1 {
  text-align: center;
  font-size: 30px;
}
article h2 {
  text-align: center;
  font-size: 24px;
}

table {
  width: fit-content;
  height: fit-content;
  margin-left: auto;
  margin-right: auto;
}
table.width-20 td,
table.width-20 th {
  width: 20px;
}
table.width-40 td,
table.width-40 th {
  width: 40px;
}
table.width-60 td,
table.width-60 th {
  width: 60px;
}
table.width-80 td,
table.width-80 th {
  width: 80px;
}
table.width-100 td,
table.width-100 th {
  width: 100px;
}
table.outside {
  border-style: solid;
  border-width: 1px;
}
table.inside {
  border-collapse: collapse;
}
table.inside td,
table.inside th {
  border-style: solid;
  border-width: 1px;
}

td.noBorder {
  border-width: 0 !important;
}

td,
th {
  hyphens: manual;
}

caption {
  caption-side: bottom;
}

.flex-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.flex-box-bottom {
  place-items: flex-end;
}

.ipa {
  font-family: "DoulosSILW", sans-serif;
}

.ipa-monospace {
  font-family: "NotoSans", monospace;
}

.default-font {
  font-family: var(--default-font), sans-serif;
}

.dashed-border {
  border: 0.5px dashed var(--color-green-black);
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.triangle-pointer-left::before {
  content: "◄ ";
}

.triangle-pointer-right::after {
  content: " ►";
}