.section {
  background-image: url('../images/DarkFauna_BG.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100svw;
  height: 100svh;
  display: flex;
}

.div-block {
  width: 100px;
  margin-bottom: 2em;
  margin-right: 2em;
}

.button-logo {
  transform-style: preserve-3d;
}

.button-logo:hover {
  transform: scale3d(1.2none, 1.2none, 1none);
}

.link-block {
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  transition: all .2s;
}

.link-block:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 479px) {
  .div-block {
    width: 75px;
  }
}


