* {
  margin: 0px;
  padding: 0px;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  background-image: url(../images/bg.png);
  background-size: cover;
  -moz-user-select: none;
  -o-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a img {
  border: none;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0,0,0,0);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.3);
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255,255,255,0.6);
}

::-webkit-scrollbar-button {
  background-color: transparent;
  height: 0px;
  width: 0px;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

.attachedToScreen {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
}

canvas {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  opacity: 0;
  -moz-transition: opacity 10s ease-in-out;
  -o-transition: opacity 10s ease-in-out;
  -webkit-transition: opacity 10s ease-in-out;
  -ms-transition: opacity 10s ease-in-out;
  transition: opacity 10s ease-in-out;
}

.logo {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  background-image: url(../images/logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 481.5px 348px;
  opacity: 0;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  -moz-transition: all 5s ease-in-out;
  -o-transition: all 5s ease-in-out;
  -webkit-transition: all 5s ease-in-out;
  -ms-transition: all 5s ease-in-out;
  transition: all 5s ease-in-out;
}

.gl {
  position: absolute;
  bottom: 10px;
  right: 20px;
}

.gl a img {
  opacity: 0.3;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  -webkit-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.gl a:hover img {
  opacity: 1;
}

body.fadein canvas {
  opacity: 1;
}

body.fadein .logo {
  background-size: 321px 232px;
  opacity: 1;
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
  filter: blur(0px);
}

.projects {
  height: calc(100% - 4em);
  width: 30%;
  min-width: 400px;
  position: fixed;
  top: 0px;
  left: 0px;
  overflow-x: hidden;
  padding: 2em;
  margin: 2em;
  border-radius: 1em;
  background-color: rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  font: normal 0.8em 'Open Sans', sans-serif;
  color: #fff;
  opacity: 0;
  -moz-transition: all 5s ease-in-out;
  -o-transition: all 5s ease-in-out;
  -webkit-transition: all 5s ease-in-out;
  -ms-transition: all 5s ease-in-out;
  transition: all 5s ease-in-out;
}

body.fadein .projects {
  opacity: 1;
}

.projects li {
  list-style: none;
  margin: 1em 0px;
  padding: 0px;
}

a:link,
a:visited,
a:active {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
