html {
  font-family: Ubuntu, "times new roman", times, roman, serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.button {
  cursor: pointer;
}

.text--grey {
  color: var(--text-grey-color);
}

@media screen and (max-width: 600px) {
  .visible--desktop {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .visible--mobile {
    display: none;
  }
}