html, body {
  width: 100%;
}

body {
  color: #fff;
  display: flex-column;
  background: #000;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

header {
  width: 100%;
  background-color: #000;
}

.navbar {
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  display: flex;
}

.navbar h1 {
  color: #fff;
  margin: 0;
  font-family: Satoshi, sans-serif;
  font-size: 4rem;
}

.navbar a {
  align-items: center;
  display: flex;
}

.navbar .github_logo {
  width: 80px;
  height: 80px;
}

#main {
  padding-left: 20px;
}

#main > div:nth-child(1) {
  min-height: 50%;
  grid-template-columns: .6fr .4fr;
  align-items: center;
  margin-bottom: 40px;
  display: grid;
}

#screen {
  position: relative;
}

#play {
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #00000080;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

#vid {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

#screen_bottom {
  justify-content: space-between;
  display: flex;
}

#controls {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

#controls > *, #controls label {
  margin-right: 8px;
}

#controls button {
  cursor: pointer;
  vertical-align: middle;
  color: #000;
  background-color: #fafbfc;
  border: 1px solid #1b1f2326;
  border-radius: 6px;
  outline: 0;
  padding: 5px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: color .2s cubic-bezier(.3, 0, .5, 1), background-color .2s cubic-bezier(.3, 0, .5, 1), border-color .2s cubic-bezier(.3, 0, .5, 1);
  display: inline-block;
  box-shadow: 0 1px #1b1f230a, inset 0 1px #ffffff40;
}

#controls button:hover {
  color: #fff;
  background-color: #0366d6;
  border-color: #1b1f2326;
  transition-duration: .1s;
  box-shadow: 0 1px #1b1f231a, inset 0 1px #ffffff08;
}

#controls select {
  cursor: pointer;
  vertical-align: middle;
  color: #000;
  background-color: #fafbfc;
  border: 1px solid #1b1f2326;
  border-radius: 6px;
  outline: 0;
  padding: 5px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: color .2s cubic-bezier(.3, 0, .5, 1), background-color .2s cubic-bezier(.3, 0, .5, 1), border-color .2s cubic-bezier(.3, 0, .5, 1);
  display: inline-block;
  box-shadow: 0 1px #1b1f230a, inset 0 1px #ffffff40;
}

#controls select:focus {
  border-color: #1b1f2326;
  transition-duration: .1s;
  box-shadow: 0 1px #1b1f231a, inset 0 1px #ffffff08;
}

#stats {
  height: -moz-fit-content;
  height: fit-content;
  grid-template-columns: auto 1fr;
  gap: 5px;
  display: grid;
}

#stats label {
  padding: 0 1rem;
}

.buffer {
  width: 100%;
  position: relative;
}

.buffer .fill {
  height: 100%;
  text-align: right;
  background-color: #40e0d0;
  padding-right: .5rem;
  transition-property: left, right, background-color;
  transition-duration: .1s;
  position: absolute;
  overflow: hidden;
}

.label > .seconds {
  font-size: .8em;
}

.buffer .fill.net {
  background-color: #40e0d0;
}

#repo_info {
  width: 100%;
  text-align: right;
  border-radius: 10px;
  margin-left: 17px;
}

#right_col {
  height: 80%;
  width: 100%;
  grid-template-rows: 1fr auto;
  display: grid;
}

.github_logo {
  width: 48px;
}

#toggle_log {
  color: #fff;
  font-size: .8rem;
}

.grid-plot {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  display: grid;
}

#log {
  height: 500px;
  color: #000;
  background-color: #fff;
  display: none;
  overflow: auto;
}

/*# sourceMappingURL=index.2f77642b.css.map */
