/* 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;
}
body,
html {
  font-family: "Inconsolata", monospace;
  background-color: #fff;
  height: 100%;
  cursor: none;
  width: 100%;
  overflow: auto;
  position: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

.custom-cursor {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: difference;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  transition: 350ms cubic-bezier(0.75, -1.27, 0.3, 2.33) transform;
  transform: translate(-50%, -50%) scale(0.15);
  z-index: 1000; }

.cursor-follower {
  position: fixed;
  pointer-events: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  transform: translate(-50%, -50%) scale(0.3);
  z-index: 900;
  opacity: 0; }

.custom-cursor--link {
  transform: translate(-50%, -50%) scale(0.8);
  cursor: none; }

.custom-cursor2--link {
  transform: translate(-50%, -50%) scale(0);
  cursor: none; }

#name {
  position: fixed;
  top: 50px;
  left: 50px; }
  #name p {
    color: #fff;
    font-size: 17px;
    line-height: 30px;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    letter-spacing: 10px;
    text-transform: uppercase; }
    #name p span {
      display: block; }

#wrapper {
  height: 100%;
  min-height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  background-color: #a2aea7;
  border: solid 10px #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  #wrapper nav {
    position: fixed;
    bottom: 20px;
    right: 0px;
    width: 150px;
    height: 20px; }
    #wrapper nav ul {
      list-style: none; }
      #wrapper nav ul li {
        margin: 0px 10px;
        display: inline-block;
        text-align: -webkit-match-parent; }
        #wrapper nav ul li svg {
          height: 18px;
          fill: #fff;
          transition: fill 0.4s ease; }
          #wrapper nav ul li svg:hover {
            fill: #000;
            cursor: none; }
        #wrapper nav ul li a {
          cursor: none; }
  #wrapper #txtHome {
    width: 100%;
    text-align: center; }
    #wrapper #txtHome p {
      color: #fff;
      letter-spacing: 20px;
      font-size: 1.5625rem; }
      @media (max-width: 1200px) {
        #wrapper #txtHome p {
          font-size: calc(1.1125rem + 0.6vw) ; } }

