/*CSS*/

@font-face {
	font-family: SpaceGrotesk;
	src: url('fonts/spacegrotesk-medium.otf');
}

body {
	background-color: #FFF; 
	color: #FFF;
	font-family: SpaceGrotesk;
	margin: 0;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
}

h1{
	color: #222;
}

 img.thisisjuan {
     width: 80px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 4vw;
}

 .buttons {
     display: flex;
     align-items: center;
}

button.icons {
  background: none;
  border: none;
  outline: none;
  padding: 1rem;
  margin-left: 1rem;
  cursor: pointer;
}

button:hover {
    background: #E5E5E5;
    border-radius: 1rem;
}

canvas {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

section {
	position: absolute;
  	height: 100vh;
  	width:100vw;
  	display: grid;
  	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  	grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  	grid-gap: 0;

}

section div {
	border: 1px solid #BDFF17;
  	z-index: 0;

}

div.actions {

	position: fixed;
	bottom: -30%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #222; 
	border-radius: 16px;
	padding: 30px;
	z-index: 1;

	display: flex;
	align-items: center;
	justify-content: center;

	transition: 0.5s ease;

}

div.handler{
	margin: 2vw;
}

input {
	width: 10vw;
	margin-top: 15px;
}

label {
	width: 100px;
	text-align: center;
}

input[type=text] {

	background: transparent;
	outline: none;
	border: none;
	border-bottom: 1px solid grey;
	font-size: 1rem;
	padding-bottom: 10px;
	font-family: SpaceGrotesk;
	color: #404040;

}

input[type=text]:focus {
	border-bottom: 1px solid #BDFF17;
	color: #fff;
}

.slider {
  -webkit-appearance: none;
  height: 32px;
  border-radius: 50px;
  background: #000;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s ease;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background: #BDFF17;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: red;
  cursor: pointer;
}

.save {
	position: fixed;
	top: 1%;
	left: 50%;
	transform: translate(-50%, -1%);
	color: grey;
	font-size: 0.8rem;
}

button:focus {
	outline: none;
	border: none;
}

button.edit {
	position: fixed;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);

	background: transparent;
	border-radius: 50px;
	border: 2px solid #000;
	color: #000;
	width: 100px;
	height: 44px;
	font-size: 1rem;
	font-family: SpaceGrotesk;

	cursor: pointer;
}

button.edit:hover{
	background: #000;
	color:#fff;
}

button.close {
	background: transparent;
	border-radius: 50px;
	border: 2px solid #BDFF17;
	color: #BDFF17;
	width: 100px;
	height: 44px;
	font-size: 1rem;
	font-family: SpaceGrotesk;

	cursor: pointer;
}

button.close:hover {
	background: #BDFF17;
	color: #000;
}
