* {
  padding: 0px;
  margin-left: 0px;
  margin-right: 0px;
}
body {
  background-color: rgb(26, 39, 39);
  color: rgb(220, 221, 213);
  font-family: charis, "Times New Roman", Times, serif;
  padding: 0px;

  -webkit-transition: 500ms ease-in;
  -ms-transition: 500ms ease-in;
  transition: 500ms ease-in;
}

/* ref'd https://www.w3schools.com/howto/howto_css_responsive_iframes.asp */
.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect */
  margin-top: 15px;
  margin-bottom: 15px;
  
  border-radius: 10px;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

img {
  /* width: inherit; */
  display: block;
  width: 100%;
  height: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 0px;
  object-fit: cover;

  border-radius: 10px;
}

@font-face {
  font-family: charis;
  src: url(charis-sil/CharisSIL-Regular.ttf);
}

/* settings */
.light-mode {
  background-color: rgb(220, 221, 213);
  color: rgb(26, 39, 39);
}

#nav-container {
  position: fixed;
  top: 0px;
  height: 30px;
  width: 100%;

  padding: 0px;
  margin: 0px;
  background-color: inherit;

  box-shadow: 0px 5px 10px 10px rgb(26, 39, 39);

  -webkit-transition: box-shadow 500ms ease-in;
  -ms-transition: box-shadow 500ms ease-in;
  transition: box-shadow 500ms ease-in;
}

.light-mode #nav-container {
  box-shadow: 0px 5px 10px 10px rgb(220, 221, 213);
}

/* light ~ dark mode */
#mode-btn-container {
  position: relative;
  display: inline;
  float: right;
  padding: 20px;
  z-index: 2;
}

#mode-btn {
  padding: 0px;

  background: none;
  color: inherit;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: inherit;

  font-size: 1.3em;
  line-height: 0px;
}

/* filtering stuff*/
#checkboxes {
  position: fixed;
  display: inline;

  float: left;
  max-width: 70%;

  padding: 20px;
  z-index: 1;

  line-height: 0px;
  font-size: 1em;
}

.checkbox-container {
  display: inline-block;
  white-space: nowrap;
}

#dev-checkbox {
  accent-color: #726ab2;
}

#interesting-checkbox {
  accent-color: #ae688f;
}

#what-checkbox {
  accent-color: #a2a280;
}

/* tagging */
.dev-tag {
  color: #726ab2;
  font-size: 1.5em;
}

.interesting-tag {
  color: #ae688f;
  font-size: 1.5em;
}

.what-tag {
  color: #a2a280;
  font-size: 1.5em;
}

.dev {
  display: block;
}

.interesting {
  display: block;
}

.what {
  display: block;
}

/* logs */
.logs {
  max-width: 500px;
  padding: 50px;
  margin: auto;
}
