.footer{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    text-align: right;
    margin: 30px;
    display: flex;
    justify-content: flex-end;
}

.footer__title{
    font-size: var(--size-xs);
    font-weight: 400;
    color: var(--color-slate600);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    user-select: none;
}

.footer__link{
  cursor: pointer;
  text-decoration: none;
}

.footer__img{
  width: 10%;
  min-width: 200px;
}

.black__overlay {
  background-color: rgb(10, 10, 10);
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(20px);
  animation: fadeOut 3.5s forwards;
}

.black__overlay-img{
  display: none;
}

.black__click{
  font-size: var(--size-4xl);
  font-weight: 400;
  color: var(--color-white);
}



@keyframes fadeOut {
  from {
      opacity: 1;
  }
  to {
      opacity: 0;
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}


/* sm */
@media (min-width: 640px) {
    .black__overlay{
      animation: none;
      
    }
    .black__click{
      cursor: pointer;
    }
}
