.floatingBtn {
  width: fit-content;
  height: fit-content;
  padding: 0.4rem;

  border-radius: 5px;
  border: 3px solid var(--b);

  background-color: var(--r);

  position: fixed;
  z-index: 99999;
  bottom: 0;
  right: 0;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

.btnWrapper {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

  color: aliceblue;

  text-decoration: none;
}

.btnWrapper .icon{
  background-color: var(--y);
  padding: 0.6rem;
  border-radius: 5px;
  color: black;
}