@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Bodoni Moda", serif;
  background-color: #000000;
  color: white;
  line-height: 1.6;
}

header {
  margin-top: 2rem;
  background-color: #000000;
  color: #ffd500;
  padding: 2rem;
  text-align: left;
}

h1 {
  padding-left: 0.5rem;
  font-size: 8rem;
  line-height: 6.9rem;
  font-weight: 700;
}

nav {
  margin-top: 1rem;
}

.dropdown-menu {
  list-style: none;
  display: flex;
  justify-content: left;
  border-top: 0.5px solid #ffd500;
  padding: 0.1rem;
}

.dropdown-menu > li {
  position: relative;
  margin: 0 1rem;
}

.dropdown-menu > li > a {
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  font-weight: 100;
  letter-spacing: 0.8rem;
  padding: 0.5rem 1rem;
  display: block;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.dropdown-menu > li > a:hover {
  color: #ffd500;
  text-shadow: 0 0 10px #ffd500, 0 0 20px #ffd500;
}

.submenu {
  list-style: none;
  /* position: absolute; */
  /* top: 100%; */
  /* left: 0; */
  background-color: #000000;
  /* display: none; */
  padding: 0.5rem;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.5rem;
  display: grid;
}

.submenu li {
  margin: 0;
}

.submenu li a {
  text-decoration: none;
  color: white;
  padding: 0.5rem 1rem;
  display: block;
  white-space: nowrap;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.submenu li a:hover {
  color: #ffd500;
  text-shadow: 0 0 10px #ffd500, 0 0 10px #ffd500, 0 0 10px #ffd500;
}

.dropdown-menu > li:hover > .submenu {
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  h1 {
    font-size: 4rem;
  }

  .dropdown-menu {
    flex-direction: column;
  }

  .submenu {
    grid-template-columns: repeat(2, 1fr);
  }
}
