body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-family: 'Nova Mono', monospace;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 24px;
  overscroll-behavior: none;
}

#big-container {
  position: relative;
}

#big-menu {
  position: absolute;
  left: 0px;
  margin: 50px 0 0 50px;
  z-index: 1000;
}

#pencil {
  position: absolute;
  left: 50px;
  z-index: 100;
}

h1 {
  color: #fff;
  display: block;
  font-family: 'Roboto Slab', serif;
}

h2 {
  color: #eee;
  display: block;
  font-family: 'Roboto Slab', serif;
  font-size: 2em;
  font-weight: 100;
  margin-bottom: 0;
  padding-bottom: 0;
}

h2:hover {
  color: #f9ed32;
}

h3 {
  color: #fff;
  display: block;
  font-family: 'Roboto Slab', serif;
}

a {
  /* color: #ff0; */
  /* color: #f9ed32; */
  color: #eee;
  text-decoration: none;
}

a:hover {
  /* color: #f9ed32; */
  color: #f26522;
  /* text-decoration: underline; */
}

ul {
  padding-left: 10px;
}

li {
  color: #ccc;
  font-family: 'DM Mono', monospace;
  font-size: 1em;
  list-style: none;
  margin: 2px;
}

button {
  cursor: pointer;
  text-transform: uppercase;
}

.less {
  color: #757575;
}

#projects:hover {
  color: #cc0000;
}

#projects-list {
  /* display: none; */
}

.show {
  /* display: block; */
  position: absolute;
  visibility: visible;
  opacity: 0.5;
  transition: visibility 0.5s, opacity 0.5s linear;
}

.hide {
  position: absolute;
  /* display: none; */
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s, opacity 0.25s linear;
}

#info-modal {
	font-family: 'DM Mono', monospace;
  background-color: #000;
  color: #fff;
  display: none;
  height: 100vh;
  left: 0px;
  opacity: 0.85;
  margin-top: 20px;
  position: absolute;
  text-align: center;
  top: 0px;
  width: 100%;
  z-index: 9999;
}

.close-btn {
  /* color: #f26522; */
	color: #fff;
  font-size: 48px;
	margin: 20px;
}

#info-modal-title {
	font-family: 'DM Mono', monospace;
	font-size: 1em;
	margin: 0 20px;
	text-transform: uppercase;
}

#info-modal-platform {
	font-family: 'DM Mono', monospace;
	font-size: 1em;
	margin: 10px 20px;
	text-transform: uppercase;
}

#info-modal-tech {
	font-family: 'DM Mono', monospace;
	font-size: .8em;
	margin: 10px 20px;
	text-transform: uppercase;
}

#info-modal-description {
	font-family: 'DM Mono', monospace;
	font-size: .8em;
	margin: 10px 20px;
	/* text-align: left; */
	text-transform: uppercase;
}

button {
	font-family: 'DM Mono', monospace;
  color: #fff;
  background-color: transparent;
  background-image: none;
  border-color: #fff;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  border: 2px solid #fff;
  padding: 0.375rem 0.75rem;
  font-size: 1em;
	margin-top: 20px;
  line-height: 1.5;
  border-radius: 0.25rem;
  text-transform: none;
  overflow: visible;
  box-sizing: border-box;
}

button:focus {
	outline-color: #000;
  border: 0;
	/* color: #999; */
}

button:disabled {
  border: 0;
	/* color: #999; */
}

/* #projects-list ul{
	padding-left: 10px;

}

#projects-list li {
	color: #ccc;
	font-family: 'DM Mono', monospace;
	font-size: 1em;
	list-style: none;
	margin: 2px;
} */

#info {
  position: absolute;
  top: 0px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 1; /* TODO Solve this in HTML */
}

a,
button,
input,
select {
  pointer-events: auto;
}

.dg.ac {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 2 !important; /* TODO Solve this in HTML */
}

#overlay {
  position: absolute;
  font-size: 16px;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.7);
}

#overlay button {
  background: transparent;
  border: 0;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 4px;
  color: #ffffff;
  padding: 12px 18px;
  text-transform: uppercase;
  cursor: pointer;
}

#notSupported {
  width: 50%;
  margin: auto;
  background-color: #f00;
  margin-top: 20px;
  padding: 10px;
}

@media only screen and (max-width: 375px) {
  h2 {
    color: #eee;
    display: block;
    font-family: 'Roboto Slab', serif;
    font-size: 1.25em;
    font-weight: 100;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  h3 {
    color: #fff;
    display: block;
    font-family: 'Roboto Slab', serif;
  }

  a:hover {
    /* color: #f9ed32; */
    color: #fff;
    /* text-decoration: underline; */
  }

  a {
    /* color: #ff0; */
    /* color: #f9ed32; */
    color: #eee;
    text-decoration: none;
  }

  a:hover {
    /* color: #f9ed32; */
    color: #f26522;
    /* text-decoration: underline; */
  }

  ul {
    padding-left: 10px;
  }

  li {
    color: #ccc;
    font-family: 'DM Mono', monospace;
    font-size: 0.75em;
    list-style: none;
    margin: 2px;
  }
}
