html, body {
	background-color: #111;
	color: #fff;
  margin: 10px;
	border: 0;
  padding: 0;
  font-family: Roboto, sans-serif;
}

a:link, a:visited {
  color: #7ab5ff;
  /*color: #3ea6ff;*/
  
  text-decoration: underline;
  cursor: pointer;
}

button {
  background: none;
  color: white;
  font-family: Roboto, sans-serif;
  font-size: 2.5vh;
  border-color: white;
  border-style: solid;
  border-radius: 1vh;
  border-width: 2px;
  outline: none;

  transition: all 0.3s;
}


#buttonCopy {
  height: 4.5vh;
  width: 10vh;
}

button:hover {
  cursor: pointer;
  font-weight: bold;
  background-color: white;
  color: black;
}

button:active {
  border: transparent;
  background: none;
  color: white;
  font-weight: normal;
  transition: none;
}