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;
}

#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;
} */

#overlay-container {
  position: relative;
  width: 45%;
  margin: auto;
}

/* opaque image — smaller and centered */
#sigil {
  display: block;
  width: 70%;
  min-width: 200px;
  margin: 0 auto;   /* center it inside the container */
  z-index: 0;
}

/* overlay image — same width & centered, absolutely positioned */
#transparent-sigil {
  position: absolute;
  top: 0;
  left: 50%;                    /* center reference */
  transform: translateX(-50%);  /* actual centering */
  width: 70%;
  min-width: 200px;
  z-index: 2;
  opacity: 0.3;
  pointer-events: none;
}


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;
  padding: 0.25rem 0rem;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
  width: 7rem;
}

.dropdown-content a {
  display: block;
  padding: 0.25rem 0rem;
  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 */