html {
  scroll-behavior: smooth;
}

body {
  background-color: rgb(181, 146, 181);
}

h1 {
  color: rgb(0, 0, 0);
  margin-top: 500px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 67px;
}

h2 {
  color: rgb(0, 0, 0);
  margin-top: 10px;
  text-align: center;
}
h3 {
  color: rgb(0, 0, 0);
  margin-top: 100px;
  text-align: center;
}
h4 {
  visibility: hidden;
}
p {
  color: rgb(0, 0, 0);
  margin-top: 10px;
}

.spacer {
  margin-top: 1000px;
}

.box {
  background-color: lightgrey;
  width: 300px;
  border: 10px solid rgb(0, 0, 0);
  padding: 30px;
  margin: 20px;
  margin: auto;
  border-radius: 25px;
}
.sticky {
  position: sticky;
  top: 50px;
}
.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 20%;
  height: 20%;
}



/* Center the menu on the page */
.menu {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main menu */
.menu-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Menu links */
.menu a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #222;
  padding: 0.5rem 0.75rem;
}

/* Dropdown container */
.has-dropdown {
  position: relative;
}

/* Dropdown menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: none;
  min-width: 160px;
}

/* Dropdown items */
.dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

/* Show dropdown on hover */
.has-dropdown:hover .dropdown {
  display: block;
}

/* Optional hover effects */
.menu a:hover {
  color: rgb(125, 99, 125);
}

.dropdown a:hover {
  background: #f2f2f2;
}
