:root {
  --color-light: #232323;
  --color-mid: rgb(255, 255, 255);
}
body {
  background-color: var(--color-light);
  color: var(--color-light);
}
#wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
header {
  z-index: 10000;
  padding: 0 16px;
  display: flex;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-size: .875rem;
  font-family: regular;
  font-style: normal;
  font-weight: 400;
  line-height: .8854vw;
  text-decoration: none;
  color:#232323;
}
.iconDiv {
  background-color: white;
  height: 25px;
  width: 25px;
  margin-top: 40px;
  margin-left: 4px;
  padding: 7px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  transition: width 300ms ease-in-out 0s, background-color 300ms linear 200ms;
}
.iconSVG {
  height: 25px;
  aspect-ratio: 1 / 1;
}
.iconDiv:hover,
.iconDiv:focus-visible {
  width: 160px;
  background-color: var(--color-mid);
  transition: width 300ms ease-in-out 0s, background-color 100ms linear 0s;
}
.iconDiv:focus-visible {
  outline: 1px solid var(--color-mid);
  outline-offset: 4px;
}
.iconDiv:active {
  opacity: 0.9;
}
.iconDiv::after {
  content: attr(tooltip);
  margin-left: 12px;
  -webkit-animation: fadeIn 600ms linear forwards;
          animation: fadeIn 600ms linear forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}