html, body {
  overflow: hidden;
  height: 100%;
  width: 100%;
  margin: 0; }

.d-none {
  display: none; }

.terminal_container {
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1000;
  display: flex;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0; }
  .terminal_container .terminal {
    box-shadow: 0 5px 50px rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(26, 26, 26, 0.95);
    background-color: rgba(0, 0, 0, 0.95);
    font-family: Monaco, Courier;
    border-radius: 5px;
    max-width: 95%;
    min-width: 95%; }
    @media (min-width: 992px) {
      .terminal_container .terminal {
        min-width: 900px; } }
    .terminal_container .terminal:before {
      padding-top: 54.5454545455%;
      content: "";
      float: left; }
    .terminal_container .terminal:after {
      display: table;
      content: "";
      clear: both; }
    .terminal_container .terminal .terminal_header {
      justify-content: space-between;
      background-color: #333333;
      align-items: center;
      font-size: 13px;
      color: #565656;
      display: flex; }
      .terminal_container .terminal .terminal_header ul.terminal_buttons {
        padding: 0 0 0 0.25rem;
        list-style: none;
        width: 80px;
        margin: 0; }
        .terminal_container .terminal .terminal_header ul.terminal_buttons li {
          padding: 0.25rem 0.25rem 0.25rem 0;
          display: inline-flex; }
          .terminal_container .terminal .terminal_header ul.terminal_buttons li:hover:nth-child(1) .dot {
            background-color: red; }
          .terminal_container .terminal .terminal_header ul.terminal_buttons li:hover:nth-child(2) .dot {
            background-color: yellow; }
          .terminal_container .terminal .terminal_header ul.terminal_buttons li:hover:nth-child(3) .dot {
            background-color: green; }
          .terminal_container .terminal .terminal_header ul.terminal_buttons li .dot {
            background-color: #565656;
            display: inline-block;
            border-radius: 50%;
            height: 13px;
            width: 13px; }
      .terminal_container .terminal .terminal_header .spacer {
        width: 80px; }
    .terminal_container .terminal .terminal_body {
      height: calc(100% - 21px);
      color: #61FF80; }

.boldcode_barberpole {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0; }
  .boldcode_barberpole:before {
    animation: barberpole 2s linear infinite;
    background-size: 150px 150px;
    background-image: linear-gradient(45deg, #fff 25%, #000 25%, #000 50%, #fff 50%, #fff 75%, #000 75%, #000);
    position: absolute;
    height: 100vh;
    content: '';
    width: 51vw;
    left: 0; }
  .boldcode_barberpole:after {
    animation: barberpole 2s linear infinite;
    background-size: 150px 150px;
    transform: rotateY(180deg);
    background-image: linear-gradient(45deg, #fff 25%, #000 25%, #000 50%, #fff 50%, #fff 75%, #000 75%, #000);
    position: absolute;
    height: 100vh;
    content: '';
    width: 50vw;
    left: 50%; }

@keyframes barberpole {
  from {
    background-position: 300px 150px; }
  to {
    background-position: 0 0; } }

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }
