/*
==========================

		BASE

==========================
*/

canvas {
  position:absolute;
  z-index: 0;
}

html {
  height:100%;
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background-color: #1e1e1e;
  text-align: center;
  font-size: 1em;
  font-family: Roboto Mono;
  font-weight: 400;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  color: inherit;
  text-decoration: none;
  outline: 0;
  cursor: pointer;
}

/*
==========================
		MAIN
==========================
*/

.boxcontainer {
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box {
  z-index: 10;
  height: auto;
  width: 300px;
  max-width: 95%;
  display: inline-block;
  position: relative;
  text-align: center;
  animation:slide 0.8s ease;
  animation-fill-mode: forwards;
}

#dirbox {
  display: none;
}

img {
  height: 128px;
  width: auto;
}

.title {
  line-height: 1em;
  margin:  10px 0;
  color: #fff;
  width: auto;
  height: auto;
  display: block;
  cursor: pointer;
}

.desc {
  line-height: 25px;
  margin:  10px 0;
  color: #808080;
  transition: all 0.4s ease;
  animation-fill-mode: forwards;
}

.link {
  line-height: 25px;
  margin:  10px 0;
  color: #808080;
  transition: filter 0.2s ease, transform 0.4s ease;
}

.link:hover {
  filter: brightness(.6);
}

.linkcont {
  margin: 0 auto;
  width: auto;
  display: inline-block;
  position: relative;
  margin: 0;
  transition: filter 0.2s ease, transform 0.4s ease;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;

}

.linksquare {
  height: 50px;
  width: 50px;
  display: inline-block;
  position: relative;
  margin: 0;
  transition: all 0.2s ease;
}

.linksquare:hover {
  filter: brightness(.6);
}

svg {
  height: 25px;
  width: 25px;
  fill: #7f7f7f;
  padding: 10px;
}
.clickable {pointer-events: none}
.unclickable {pointer-events: auto; user-select: none; -moz-user-select:none; -moz-user-select:none; -ms-user-select:none; -webkit-user-select:none;}
/*
==========================
		ANIM
==========================
*/

@keyframes slide {
  0% {transform: translate(0, 2.5em); opacity: 0;}
  100% {transform: translate(0, 0); opacity: 1;}
}
