@charset "UTF-8";
::selection {
  background-color: #e61938;
  color: white;
}

::-moz-selection {
  background-color: #e61938;
  color: white;
}

/**********************************
* BASE
**********************************/
html {
  font-size: 5.75vw;
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 3.25vw;
  }
}
@media only screen and (min-width: 1180px) {
  html {
    font-size: 2vw;
  }
}
@media only screen and (min-width: 2200px) {
  html {
    font-size: 44px;
  }
}

body {
  background-color: black;
  color: white;
  font-family: "nitti-grotesk", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.225;
  height: 100vh;
  width: 100vw;
}

/**********************************
* MAIN
**********************************/
main {
  padding: 1.5rem;
}

#contact,
#info {
  color: white;
}
#contact a,
#info a {
  color: white;
  text-decoration: none;
}

#info {
  margin-top: 1.25rem;
}

.item {
  position: relative;
  /* activated */
}
.item span {
  opacity: 0;
}
.item span.smiley {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.item span.smiley img {
  margin-left: 0.325rem;
  width: 1rem;
}
.item .onigiri {
  background-color: black;
  display: flex;
  flex-direction: row;
  padding: 0.125rem 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.item .onigiri img {
  height: 1rem;
  margin-right: 0.325rem;
}
.item.activated span {
  opacity: 1;
}
.item.activated .onigiri {
  opacity: 0;
  pointer-events: none;
}

/**********************************
* CONTENT
**********************************/
.blog {
  margin: 0 auto;
  width: 100%;
}
@media only screen and (min-width: 35rem) {
  .blog {
    width: 32.5rem;
  }
}
.blog h1 {
  font-size: 2rem;
  line-height: 1.175;
  margin-bottom: 0.25rem;
  margin-top: 0;
}
.blog h2 {
  font-size: 1.65rem;
  line-height: 1.175;
  margin-bottom: 0.5rem;
}
.blog p {
  margin: 0.75rem 0;
}
.blog p.meta {
  margin-top: 0.25rem;
}
.blog a {
  color: white;
  text-decoration: underline;
}
.blog .sources-title {
  margin-bottom: 0.25rem;
  margin-top: 2rem;
}
.blog .sources-title + * {
  margin-top: 0.25rem;
}

.questions-module {
  border: 1px solid white;
}
.questions-module .question:last-child {
  border-bottom: 0;
}
.questions-module .question .title {
  border-bottom: 1px solid white;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  width: 100%;
}
.questions-module .question .title span {
  flex: 1 1 100%;
  display: flex;
  flex-direction: row;
  padding: 0.5rem 0.75rem;
}
.questions-module .question .title span::before {
  content: "↓";
  display: flex;
  flex: 0 0 1.375rem;
}
.questions-module .answer {
  border-bottom: 1px solid white;
  padding: 0.5rem 0.875rem;
  display: none;
}
.questions-module .answer > *:first-child {
  margin-top: 0;
  padding-top: 0;
}
.questions-module .answer > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.questions-module .answer.opened {
  display: block;
}
