@media (prefers-color-scheme: dark) {
  body {
    background-color: #1b1927;
    color: #fcf9f8;
  }
}

@media (prefers-color-scheme: light) {
  body {
    background-color: white;
    color: black;
  }
}

* {
  font-family: sans-serif;
}

html {
  height: 100%;
  overflow: hidden;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0;
  font-size: 10dvh;
  height: 100%;
}

@media (orientation: portrait) {
  body {
    font-size: 9vw;
  }
}

.contacts {
  text-align: center;
}

.contacts > img {
  --size: 10vmin;
  width: var(--size);
  display: inline-block;
  transition: filter ease 0.2s;
  background-color: white;
  margin: calc(var(--size) * 0.1);
  border-radius: 50%;
}

/* .contacts > img:hover {
  filter: brightness(0) saturate(100%) invert(100%) contrast(100%);
} */