/* 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;
}

/* end reset  */



body {
  background: #7374FF;
  color: #FF5600;
  font-family: 'helvetica';
  font-weight: 500;
  -webkit-font-smoothing : antialiased;
  -moz-osx-font-smoothing: grayscale;
}


a {
  color: inherit;
  text-decoration: none;
}




.sidebar {
  font-size: 36px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  padding: 30px 0 30px 55px;
  border-right: #99ff66 1px solid;
  background: black;
  width: 1vw;
  z-index: 2;
}

.sidebar p {
  transform-origin: 50% 0;
  transform: rotate(90deg) translate(50%, 0);
  white-space: nowrap;
  line-height: 1.5;
}

.repo {
  font-size: 15px;
  position: fixed;
  bottom: 40px;
  left: 15px;
  text-decoration: underline;
}

.b-canvas {
  margin-top: 100px;
  margin-left: 100px;
  z-index:1;
}

.adam {
  position: fixed;
  right: 0;
  width: 33vw;
  bottom: 0;
  max-width: 350px;
  mix-blend-mode: difference;
}

#drawer {
  position: fixed;
  left: 0;
  top: 0;
}

#drawBegin {
  position: fixed;
  top: 230px;
  left: 100px;
  text-decoration:underline;
  cursor: pointer;
  z-index: 1;
  font-size: 35px;
  mix-blend-mode: difference;
}

@media(max-width: 500px) {
  header {
    font-size: 24px;
    padding-left: 57px;
  }
  .sidebar p {
    font-size: 24px;
  }
  .sidebar {
    padding-left: 40px;
  }

  #drawBegin {
    font-size: 30px;
    left: 66px;
  }
  .b-canvas {
    margin-left: 67px;
  }
  .adam {
    width: 49vw;
  }
  .repo {
    font-size: 14px;
    left: 4px;
  }

}