html,
body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
}

p {
  margin: 0;
  padding: 0;
}

/* Container for overlapping elements */
#overlay-container {
  position: relative;
  width: 45%;
  margin: auto;
}

/* Both image and canvas will fill the container */
#sigil,
canvas {
  top: 0;
  width: 100%;
  display: block;
}

#sigil {
  z-index: 0;
  padding-bottom: 3vw;
  width: 70%;
  min-width: 200px;
  display:flex;
  justify-content: center;
  margin: auto;
  /* right: 50%; */
  /* padding: 3vw; */
}

canvas {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}


/* NAVBAR STYLING */

#navbar {
  padding-bottom: 7.5vh;
  /* overflow: hidden; */
}

/* The dropdown container */
.dropdown {
  margin-bottom: 0;
  /* position:relative; */
}

/* Dropdown button */
.dropdown .dropdown-link {
  border: none;
  outline: none;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

#navbar a:hover,
.dropdown:hover .dropdown-link {
  color: white;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
  width: 7rem;
}

.dropdown-content a {
  display: block;
  padding: 0.25rem 0;
  background-color: black;
  position: relative;
}

.dropdown-content a:hover {
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  display: inline-block;
  margin-right: 3vw;
  margin-left: 3vw;
}

a::before {
  content: "["
}

a::after {
  content: "]"
}

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

/* selected link */
a:active {
  color: white;
}

/* END NAVBAR STYLING */