@font-face {
  font-family: 'AdelleSans Light';
  src: url('../fonts/AdelleSans-Light.woff') format('woff'),
       url('../fonts/AdelleSans-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

*,
*::after,
*::before {
	box-sizing: border-box;
}

body {
  margin: 0;
  cursor: none;
}

#cursor {
  width: 10px;
  height: 10px;
  z-index: 999999;
  position: absolute;
  background: #fff;
  border-radius: 10px;
  pointer-events: none;
  transform: scale(0.85);
  opacity: 1;

  -webkit-transition: transform 0.5s ease, opacity 0.5s ease;
     -moz-transition: transform 0.5s ease, opacity 0.5s ease;
       -o-transition: transform 0.5s ease, opacity 0.5s ease;
          transition: transform 0.5s ease, opacity 0.5s ease;
}

.hold {
  transform: scale(3.5) !important;
}

.stopped {
  animation: cursor-animate  5s infinite;
}

.disappear {
  display: none;
}

@keyframes cursor-animate {
  0% { transform: scale(0.85) }
  20% { transform: scale(2) }
  100% { transform: scale(0.85) }
}

.hoveredCursor {
  transform: scale(3.5) !important;
  opacity: 0.5 !important;
}

.content {
	width: 100%;
  height: 93vh;
}

.rgbKineticSlider {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

canvas {
  position: absolute;
  display : block;
  top:0;
  left : 0;
}

.logo {
  position: fixed;
  top: calc(50% - 57px);
  left: calc(50% - 135px);
}

.logo img {
  width: 270px;
  height: auto;
}

p {
  font-family: 'AdelleSans Light', sans-serif;
  font-size: 14px;
  text-align: center;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #fff;
  cursor: none;
}

.selectDisable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;

  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

@media screen and (min-width: 53em) {
	.content {
		height: 100vh;
  }

  .logo img {
    width: 430px;
    height: auto;
  }

  .logo {
    position: fixed;
    top: calc(50% - 60px);
    left: calc(50% - 215px);
  }
}

@media (hover: none) {
  #cursor {
    display: none;
  }
}