@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto+Slab:wght@900&family=Roboto:wght@300;400;700&family=Sigmar+One&family=Titillium+Web:wght@400;700&display=swap');

:root {
  /*  fonts */
  --baseFont: 'Roboto', sans-serif;
  --titleFont: 'Titillium Web', sans-serif;
  /* colors */
  --bgGray: rgba(26, 26, 26, 0.884);
  --baseWhite: rgb(236, 236, 236);
  --baseRed: rgb(226, 96, 96);
  --baseLink: rgb(255, 255, 255);
  --sectionBackground: rgba(0, 0, 0, 0.726);
}

html,
body {
  height: 100%;
  /* background: var(--bgGray); */
  color: var(--baseWhite);
  line-height: 1.5;
  font-weight: 300;
  background: rgb(29, 29, 29);
  background: none;
}
body {
  margin: 0px;
}

a {
  color: var(--baseLink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--titleFont);
}

.spacer {
  width: 100%;
  margin-top: 20px;
}
main {
  /* width: 100%; */

  font-family: var(--baseFont);
  margin-bottom: 300px;
}
section {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.wide {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  text-align: center;
  background: none;
}
.-wide {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  text-align: center;
}
.half-wide {
  width: 90%;
}
.two-thirds {
  max-width: 75%;
}
.inline-image {
  text-align: center;
}
.inline-image img {
  max-width: 400px;
}
blockquote {
  max-width: 400px;
}
.align-right {
  margin-right: 0px;
}
.crosshead {
  font-family: var(--headerFont);
}
.introduction {
  font-family: var(--titleFont);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 50px;
}
.chart-title {
  width: 100%;
  text-align: center;
}
.dev {
  color: white !important;
  font-size: 1.2rem !important;
  font-family: monospace;
  display: none;
}

/* Tweets */
.tweet-row {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
}
.tweet-wrap {
  width: 100%;
  /* background: red; */
}
.tweet-wrap {
  display: grid;
  grid-template-columns: 1fr 10fr;
}
.tweets {
  background: hotpink;
  font-size: 0.8rem;
  padding: 7px 2px;
  border: solid 1px #1a1a1a;
  /* margin-right: 2px; */
  /* width: 5px; */
  /* border-radius: 10px; */
}
.tweets-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgb(175, 175, 175);
  text-transform: uppercase;

  padding: 0px;
  border: none;
  width: 50px;
  text-align: right;
  padding-top: 0px;
  background: none;
  /* padding-right: 10px; */
}
.tweet-bar {
  /* margin-bottom: 1px; */
  /* margin-bottom: 20px; */
  /* margin-top: 100px; */
  /* background: red; */
  /* padding-top: 50px; */
}
.tweets-head {
  font-size: 0.6rem;
  text-align: center;
  background: none;
  color: gray;
}

.introduction {
  line-height: 1.7rem;
  margin-top: 100px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  text-align: center;
}

.content-wrap {
  padding-top: 80px;
  width: 100%;
}
.active-users-mobile {
  display: none;
}
.active-users-mobile th {
  font-weight: 700;
}

@media only screen and (max-width: 800px) {
  body {
    font-size: 0.9rem;
  }
  .half-wide {
    width: 98%;
  }
  .two-thirds {
    width: 98%;
  }
  section {
    max-width: 90%;
  }
  .chart-title h2 {
    line-height: 1.5rem;
  }
  .inline-image img {
    max-width: 370px;
  }
  .active-users-desktop {
    display: none;
  }
  .active-users-mobile td {
    text-align: center;
    color: #000;
    font-weight: 700;
  }
  .active-users-mobile {
    display: block;
  }
}
