body {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-weight: normal;
  margin: 0;
  width: 100%;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  border-right: 15vw solid #00AAFF;
  padding: 0 12vw;
  overflow-x: hidden;
  text-align: center;
}

@media (max-width: 1000px) {
  body {
    padding: 0 10vw;
  }
}

@media (max-width: 640px) {
  body {
    padding: 0 5vw;
  }
}

@font-face {
  font-family: prototype;
  src: url(../Prototype.ttf)
}

/* headings */

h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, ol, dl, figure {
  margin-bottom: 30px;
  margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: prototype;
  font-weight: 700;
  line-height: 1;
}

h1 {
  font-weight: 700;
  /*font-size: 76px;*/
  font-size: 7vw;
}

h2 {
  font-size: 28px;
  font-weight: 400;
  color: #555555;
}

/* timeline "pin" styles */

.pin {
  position: absolute;
  margin: -6vw 0 -6vw 0;
  width: 15vw;
  right: -15vw;
  border-top: 12px solid transparent;
  z-index: 1;
  text-align: center;
  background-color: #00AAFF;
}

.pin > img {
  width: 12vw;
}

.pin:first-of-type::after, .pin.with_arrow::after {
  content: '';
  position: absolute;
  left: -2.5vw;
  z-index: -1;
  top: 3.5vw;
  width: 5vw;
  height: 5vw;
  background-color: #00AAFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* paragraph text */
p, blockquote, pre, ul, ol, li, dl, figure {
  letter-spacing: 0.1px;
  line-height: 1.4;
}

.screenshot {
  border: 4px solid black;
  border-radius: 2px;
  margin-right: 30px;
}

.screenshot.round{
  border-radius: 92px;
}

li {
  margin-bottom: 15px;
}

/* links */
a {
  text-decoration: none;
}
a:link {
  color: #0055FF; /* GColorBlueMoon */
}

a:visited {
  color: #5555AA; /* GColorLiberty */
}

/* code */
code {
  font-family: Consolas, Menlo, Monaco, monospace;
  display: block;
  white-space: pre-line;
  padding: 10px;
  border: 2px solid #AAAAAA;
  border-radius: 3px;
  margin: 15px 0;
}

/* special styles for the first pin and title */
h1:first-of-type {
  padding-top: 30vh;
}

.pin:first-of-type {
  top: calc(30vh + 3.5vw);
  border-top: 0 none;
}

input[type=range] {
  -webkit-appearance: none;
  border: 1px solid white;
  width: 300px;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 300px;
  height: 5px;
  background: #888;
  border: none;
  border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb{
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #00AAFF;
  margin-top: -4px;
}
input[type=range]:focus{
  outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track{
  background: #ccc;
}
input[type=range]::-moz-range-track {
  width: 300px;
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}
input[type=range]::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #00AAFF;
}
input[type=range]:-moz-focusring{
  outline: 1px solid white;
  outline-offset: -1px;
}
input[type=range]::-ms-track {
    width: 300px;
    height: 5px;
    
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;
    
    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;

    /*remove default tick marks*/
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #777;
    border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
    background: #ddd;
    border-radius: 10px;
}
input[type=range]::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #00AAFF;
}
input[type=range]:focus::-ms-fill-lower {
    background: #888;
}
input[type=range]:focus::-ms-fill-upper {
    background: #ccc;
}
/*MY STUFF*/
#model{
  color: #00AAFF;
}
#logo{
  width: 100%;
  top: 40%;
  text-align: center;
}
#hardware-display{
  text-transform: uppercase; 
  font-family: prototype;
}
p:last-of-type{
  margin-bottom: 0px;
}