#darkblue {
    color: rgb(var(--darkblue));
  }

#bluebelle {
    color: rgb(var(--bluebelle));
  }

#thegreen {
    color: rgb(var(--thegreen));
  }

#candygreen {
    color: rgb(var(--candygreen));
  }

#eclipsepurple {
    color: rgb(var(--eclipsepurple));
  }

#princesspurple {
    color: rgb(var(--princesspurple));
  }

#hotpink {
    color: rgb(var(--hotpink));
  }

#pink {
    color: rgb(var(--pink));
  }

#hazel {
    color: rgb(var(--hazel));
  }

#colours {
    text-align: center;
    font-size: 1.5rem;
    line-height: 0.75rem;
}
 /* Dropdown Button */
.dropbtn {

}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: relative;
  background-color: inherit;
  min-width: 160px;
  z-index: 1;
  font-size: 1rem;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
/*.dropdown:hover .dropbtn {background-color: #ddd;} */