body {
  background: black;
  transition: 0.3s;
  color: white;
  font-family: sans-serif;
  font-weight: 300;
  padding-left: 15px;
  padding-right: 15px;
}

h2 a {
  text-decoration: none;
  opacity: 0.7;
  transition: 0.3s;
  color: white;
  font-family: sans-serif;
  font-size: 36px;
  margin-top: 12px;
  margin-bottom: 9px;
  font-weight: 300;
}

.page-title {
  display: flex;
}

h3 {
  color: #aaa;
  font-family: sans-serif;
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 9px;
  margin-right: 9px;
  font-weight: 300;
}

h3 a
{
  opacity: 0.7;
  transition: 0.3s;  
  text-decoration: none;
}

h3 a:hover {
  opacity: 1.0;
  background: linear-gradient(to right, #ff8a00, #da1b60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

button {
  opacity: 0.8;
  transition: 0.3s;
  background: transparent;
  color: white;
  padding: 8px 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 200;
  margin-left: 10px;
  float: right;
  border: 1px solid white;
}

button a {
  text-decoration: none;
}

button:hover {
	opacity: 1.0;
  color:white;
  border-color:white;
  background-image:
    linear-gradient(
       to right, #ff8a00, #da1b60);
}

button a:hover {
  background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}

button:focus {
  outline: none;
}

#index-btn {
  float: unset;
  margin: 0;
}

canvas {
  width: 100% !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-style: solid;
  border-width: 1px;
  opacity: 0.9;
  transition: 0.3s;
  border-color: #ababab;
  margin-top: 15px;
  z-index: -9000;
  touch-action: none;
}

canvas + button {
  margin-top: 15px;
}

canvas:hover {
  opacity: 1.0;
  border-color: white;
}

/* DROPDOWN */

.dropbtn {
  background-color: inherit;
  color:white;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover {
    text-decoration: none;
    opacity: 1.0;
    background: linear-gradient(to right, #ff8a00, #da1b60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dropbtn:focus {
    outline:0;
}

.dropdown {
  position: relative;
  z-index: 5;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  opacity: 0.8;
  transition: 1.0s;
  margin-top: 2px;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 150px;
}

.dropdown-content a {
  padding-top: 15px;
  padding-left: 10px;
  font-size: 14px;
  text-decoration: none;
  display: block;
  background: black;
}

a
{
    color:white;
    z-index:100;
}

a:hover
{
    text-decoration: none;
    opacity: 1.0;
    background: linear-gradient(to right, #ff8a00, #da1b60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.show {
    display:block;
}

.selected
{
    color: #aaa;
}