body {
  background-color: #312933;
  -webkit-text-fill-color: white;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

nav {
  background: linear-gradient(to bottom, #231625 79%, #312933);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3vw;
  list-style: none;
  margin: 0;
  background: #231626;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

#logo {
  width: 50px;
  height: 50px;
  padding-top: 5px;
}

h1 {
  margin: 0;
  font-size: 24px;
}

h1 a {
  color: white;
  text-decoration: none;
}

.nav-right-group {
  display: flex;
  gap: 10px;
}

.nav-right-group a {
  color: #a764df;
  text-decoration: none;
  font-size: 16px;
  padding: 10px;
}

.nav-right-group a:visited {
  color: #ac72b6;
}

.nav-right-group a:hover {
  color: #7727a5;
  text-decoration: underline;
}

ul li {
  position: relative;
}

ul li ul.dropdown {
  display: none;
  position: absolute;
  background: #23164D;
  top: 100%;
  left: 0;
  z-index: 999;
  min-width: 150px;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

ul li:hover ul.dropdown {
  display: block;
}

ul li ul.dropdown li {
  padding: 0;
  margin: 0;
}

ul li ul.dropdown li a {
  display: block;
  padding: 10px 5px;
  font-size: 16px;
  color: white;
  text-align: center;
  text-decoration: none;
}

ul li ul.dropdown li a:hover {
  background-color: #3a2c5d;
}

main h1,
main p {
  text-align: center;
}

main h1,
main h2,
main p,
main a {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

hr {
  border: none;
  height: 2px; /* line thickness */
  max-width: 100%;
  margin: 1em auto; /* center horizontally with some vertical spacing */
  background: linear-gradient(
    to right,
    transparent,
    white,
    transparent
  );
  opacity: 0.25; /* subtle fade */
}

main a {
  display: block;
}
main{

    text-align: center;
}