:root {
  --video-width: 200px;
  --video-height: 200px;
}

body {
  display: flex;
  flex-direction: column;
}

header {
  --dark-blue: #1f2d3d;
  --white: #fff;
  --grey: #c8d1dc;
}

.header-container {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  width: 100%;
  font-family: "Helvetica Neue", Sans-Serif;
}

header {
  background-color: #fff;
  width: 100%;
  height: 52px;
  box-shadow: inset 0px -1px 0p var(--grey);
  border-bottom: 1px solid var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-header {
  display: flex;
  align-items: center;
  width: 325px;
  margin-left: 16px;
}

.daily-logo {
  height: 24px;
  width: 60px;
  margin-right: 24px;
}

.header-title {
  font-size: 12px;
  line-height: 16px;
}

.right-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-right: 24px;
}

.right-header a {
  font-size: 0;
}

.title {
  margin: 0;
  text-align: center;
  padding-bottom: 20px;
}

.docs-button {
  justify-content: space-between;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

.white-button {
  color: var(--dark-blue);
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--grey);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: bold;
  cursor: pointer;
}

.link {
  text-decoration: none;
}

.divider {
  background: var(--grey);
  margin: 0 16px;
  display: block;
  height: 32px;
  width: 1px;
}

.octocat {
  height: 24px;
  width: 24px;
}

noscript {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 100%;
  font-family: "Helvetica Neue", Sans-Serif;
}

.hidden {
  display: none;
}

video {
  width: var(--video-width);
  height: var(--video-height);
}
