/* body {
  font-family: "Montserrat", sans-serif;
  padding: 20px;
} */

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin: 10px 0;
}

a.popup-link {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: #000000;
  max-width: 600px;
  width: 90%;
  max-height: 80%;
  overflow-y: auto;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: rgb(255, 255, 255);
  cursor: pointer;
}
