* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* Header */
.header-nav {
  justify-content: right;
  align-items: right;
  display: flex;
  padding: 2rem;
  background-color: transparent;
}


/* Dropdown navigation menu */
.header-nav li,
li a,
.dropdown-button {
  display: inline-block;
  list-style: none;
  text-align: center;
  padding: 5px 5px;
  text-decoration: none;
  cursor: pointer;
  color: black;
  font-size: 15px;
  font-weight: 400;
}

.header-nav li:hover,
li a:hover,
.dropdown:hover .dropdown-button:hover {
  color: #4CAF50;
}

.dropdown {
  position: relative;
  display: inline-block;
  margin-left: 0;
  /* left: -10px; */
}

/* Dropdown Content*/
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

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

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


/* Animating Link Underlines */
.header-nav a {
  position: relative;
}

.header-nav a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.header-nav a:hover::before {
  transform: scaleX(1);
}

/* Header search field */
.header-search {
  margin-right: auto;

}

#searchInput {
  padding: 20px 5px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  border: none;
  outline: none;
}


/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  color: #f9f9f9;
  background-color: rgb(47, 47, 47);
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 100;
  letter-spacing: 0.1em;
  z-index: 1000;
}
