body {
  height: 100%;
  width: 100%;
  background-color: lightgreen;
  margin: 0%;
}

#muzzverze-header {
  background-color: black;
  height: 10%;
  color: whitesmoke;
  padding: 2%;
  display: flex;
  align-items: center;
  position: relative;
}

#muzzverze-header svg {
  margin-left: auto;
}

#muzzverze-header {
  justify-content: center;
}

#muzzverze-header svg {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
}

#privacy-policy-content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  height: 85%;
  margin-left: 3%;
  margin-top: 8%;
  max-height: 70%;
  background-color: black;
  color: whitesmoke;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2%;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
}

#privacy-policy-content h2 {
  color: whitesmoke;
  margin: 18px 0 10px 0;
  text-align: left;
  font-weight: 600;
}

#privacy-policy-content h3 {
  color: lightgreen;
  margin: 18px 0 10px 0;
  text-align: left;
  font-weight: 600;
}

#privacy-policy-content ul {
  padding-left: 24px;
  margin-bottom: 1.1em;
}

#privacy-policy-content p {
  margin: 8px 0 16px 0;
}

@media (max-width: 768px) {
    #privacy-policy-content {
        margin-top: 15%;
        max-height: 90%;
    }
}