.profile-image {
  position: fixed;
  top: 1%;
  right: 2%;
  cursor: pointer;
  z-index: 10000;
}
.profile-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: fixed;
  top: 10%;
  right: 10%;
  background-color: #f1f1f1;
  width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: -1;
  border-radius: 1.25em;
  padding: 1em;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  font-size: 1.25em;
}

.dropdown-content a i {
  color: #43c46e;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: block;
}/*# sourceMappingURL=nav.css.map */