/*body {
  margin: 0;
  padding: 0;
  font-family: "Roboto Condensed", sans-serif;
}

#container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

header {
  text-align: left;
  background-color: #a83b27;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  height: 100vh;
}

#title {
  padding-left: 100px;
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

#subtitle {
  padding-left: 100px;
  grid-column: 1 / 4;
  grid-row: 3;
}

ul {
  font-size: 32px;
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

li {
  margin-left: -20px;
}

a:link {
  color: #bdb4ae;
  text-decoration: none;
}

a:visited {
  color: #bdb4ae;
}

a:hover {
  color: #9a928d;
  text-decoration: underline;
}

li:before {
  content: "# ";
  color: #bdb4ae;
}

#contents {
  color: #9a928d;
  grid-column: 3;
  grid-row: 1 / 3;
}

h1 {
  font-size: 86px;
  color: #bdb4ae;
}

h2 {
  font-size: 44px;
  color: #9a928d;
}

h3 {
  font-size: 38px;
}

p {
  padding: 50px;
  width: 60%;
  margin: 0 auto;
}

svg {
  border: 1px solid #222222;
  display: block;
  margin: auto;
  margin-top: 24px;
}

footer {
  margin-top: 24px;
  min-height: 4em;
  background-color: #a83b27;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

@media screen and (max-width: 970px) {
  header {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  #title, #subtitle, #contents {
    padding: 0;
    margin: 0 auto;
  }

  #subtitle {
    text-align: center;
  }
}*/

html, body {
  padding: 0;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
}

header {
  text-align: center;
  padding: 1rem;
}

#title h1 {
  font-weight: 700;
  margin: 0;
  padding: 0.5rem;
}

#subtitle h2 {
  font-weight: 400;
  margin: 0;
  color: #888888;
  padding: 0.5rem;
}

#contents h3 {
  font-weight: 400;
  margin: 0;
}

#contents ul {
  list-style: none;
  display: inline-block;
}

#contents li {
  text-align: left;
}

#contents li a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 300ms ease-in-out;
}

#contents li a:link {
  color: #000000;
}

#contents li a:visited {
  color: #000000;
}

#contents li a:hover {
  border-bottom: 1px solid #888888;
  color: #888888;
}

#contents li a:active {
  color: #888888;
}

#contents li:before {
  content: "#";
  padding-right: 0.5rem;
  transition: all 300ms ease-in-out;
}

#contents li:hover::before {
  color: #888888;
}

.section-header {
  font-weight: 400;
  margin: 0;
  text-align: center;
  padding: 1rem;
  background: #444444;
  color: #eeeeee;
}

p {
  width: 90vw;
  margin: auto;
  padding: 1rem;
}

svg {
  border: 1px solid #111111;
  width: 90vw;
  height: 50vw;
  display: block;
  margin: 1rem auto;
}

text {
  font-family: "Roboto Condensed", sans-serif;
}

#queue-select {
  position: fixed;
  bottom: 2vh;
  left: 1vh;
  width: 6vh;
  height: 5vh;
  font-family: "Roboto Condensed", sans-serif;
  border: none;
  background: #eeeeee;
  color: #444444;
  border-radius: 5px;
  box-shadow: 0px 0px 5px #000000;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

#queue-select:hover {
  background: #444444;
  color: #eeeeee;
  box-shadow: 0px 0px 0px #ffffff;
}

#go-to-top-btn {
  display: none;
  position: fixed;
  bottom: 2vh;
  right: 2vh;
  width: 5vh;
  height: 5vh;
  padding: 1rem;
  border: none;
  border-radius: 50%;
  box-shadow: 0px 0px 5px #000000;
  background: #eeeeee;
  color: #444444;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

button:after {
  content: '\2191';
  font-size: 1rem;
}

#go-to-top-btn:hover {
  background: #444444;
  color: #eeeeee;
  box-shadow: 0px 0px 5px #ffffff;
}

footer {
  text-align: center;
  background: #444444;
  color: #eeeeee;
  padding: 1rem;
}

footer h2 {
  font-weight: 400;
  font-size: 1rem;
}

/*

mobile small - 320px
mobile medium - 375px
mobile large - 425px

tablet - 768px

laptop - 1024px
laptop-large - 1440px

*/