.cookie-banner {
  position: fixed;
  width: 60%;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navButtonBackgroundColor);
  color: white;
  padding: 1em;
  margin-bottom: 6%;
  display: flex;
  justify-content: space-between;
  border-radius: var(--borderRadius);
  border: 2px solid rgb(160, 160, 160);
  align-items: center;
  z-index: 1000;
}

.cookie-banner button {
  background: rgb(0, 110, 0);
  border: none;
  color: white;
  padding: 1em  2em;
  margin: 1em;
  cursor: pointer;
  transition: background-color 0.6s ease;
}

.cookie-banner button:hover {
  background: rgb(0, 170, 0);
}
