/* Custom font */

@font-face {
	font-family: "Squared";
	src: url("/assets/font/Minecraft.otf");
}

* {
	background: black;

}

/* Styles for h2 and h3 lines */
h2{
	text-align: center;
	font-size: 6vw;
}
h3{
	text-align: center;
	font-size: 5vw;
}

/* Style for body  */
body {
	color:  limegreen;
	font-family: Squared;
	letter-spacing: 1px;
}


footer {
	color: #0d0d0d;
	font-size: 9px;
	position: absolute;
	bottom: 2%;
	right: 2%;
	padding-top: 5%;
}

a {
	color: gray;
	text-decoration: none;
}

a:hover {
	background: #111111;
}

/* Labels style */
#copied {
	position: fixed;
	left: 60%;
	color: gray;
	font-size: 1.5vw
}

#numLength {
	position: fixed;
	left: 62%;
	font-size: 2vw;
}

/* Prevent selecting text */
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}


#CopyButton {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	color:  limegreen;
	font-family: Squared;
	font-size: 5vw;
	letter-spacing: 1px;
	padding: 0px;
	border: none;
	background: none;
}


/* Style for nameGen button */
#NameGen {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	border-width: 5px;
	border-color: limegreen;
	border-radius: 10px;
	background: limegreen;
	color: #FFFFA0;
	font-family: "Squared";
	font-size: 3vw;
}

#NameGen:hover {
	color: #111111;
}

/* Style for digiGen button */
#DigiGen {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	border-width: 5px;
	border-color: limegreen;
	border-radius: 10px;
	background: limegreen;
	color: #FFFFA0;
	font-family: "Squared";
	font-size: 3vw;
}

#DigiGen:hover {
	color: #111111;
}


.slidecontainer {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  position: relative;
  left: 50%;
  transform: translateX(-50%);	

  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 20%; /* Full-width */
  height: 15px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 15px; /* Set a specific slider handle width */
  height: 15px; /* Slider handle height */
  background: #04AA6D; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 15px; /* Set a specific slider handle width */
  height: 15px; /* Slider handle height */
  background: #04AA6D; /* Green background */
  cursor: pointer; /* Cursor on hover */
}