﻿/* font */

@font-face {
    font-family: 'Cocomat';
    src: local('Cocomat Regular'), local('Cocomat-Regular'),
        url('../fonts/cocomat/Cocomat.woff2') format('woff2'),
        url('../fonts/cocomat/Cocomat.woff') format('woff'),
        url('../fonts/cocomat/Cocomat.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }

@font-face {
    font-family: 'Cocomat-Bold';
    src: local('Cocomat Regular'), local('Cocomat-Regular'),
        url('../fonts/cocomat/Cocomat-Bold.woff2') format('woff2'),
        url('../fonts/cocomat/Cocomat-Bold.woff') format('woff'),
    font-weight: 400;
    font-style: normal;
  }


#canvas {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
/*  background-image: linear-gradient(#2c30ca, #060838);
*/  background-image: linear-gradient(#2c30ca, #060838);
}

#title {
  position: absolute;
  top: 60%;
  left: 0;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Cocomat";
  font-size: 3em;
  text-align: center;
  color: #ffffff;
  mix-blend-mode: overlay;
}

form {
  position: absolute;
  padding: 30px;
  width: 200px;
  mix-blend-mode: overlay;
  font-size: 1.1em;
  z-index: 1;
}

label {
  display: block;
  text-align: center;
  font-family: "Cocomat";
  color: #fff;
}

input[type=range] {
  -webkit-appearance: none;
  margin-bottom: 18px;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: white;
}
input[type=range]::-webkit-slider-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: white;
}
input[type=range]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}

.v2-link {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Cocomat";
  font-size: 1.2em;
  text-decoration: none;
  mix-blend-mode: overlay;
}
.v2-link:hover {
  color: white;
  text-decoration: underline;
}

#codepen-link {
  position: absolute;
  right: 30px;
  bottom: 30px;
  height: 75px;
  width: 75px;
  z-index: 10;
  border-radius: 50%;
  background-image: url('../images/logo/logo_splash_200x200.png');
  background-position: center center;
  background-size: cover;
  opacity: 0.2;
  transition: all 0.25s;
}
#codepen-link:hover {
  opacity: 1;
  box-shadow: 0 0 6px #6f6f6f;
}