@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;1,300;1,400&display=swap');

:root {
  --base-theme: #fff;
  --base-accent: #938e48;
  --base-accent-interact: #747039;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html, body {
  min-width: 100vw;
  max-width: 100vw;
  min-height: 100vh;

  scroll-behavior: smooth;
}

body {
  background-color: #000;

  --op-flex-gap-horizontal: 20px;
  --op-flex-gap-vertical: 20px;

  /* no js fallback */
  --tt-scroll-cover-banner: -100s;
}

body,
input,
input::placeholder,
textarea,
textarea::placeholder {
  font-size: 16px;
  font-family: 'Ubuntu', 'Helvetica Neue', 'Verdana', 'Arial', sans-serif;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #ddd;
}

a, a:visited, a:hover, a:active, a:focus {
  color: var(--base-accent);
  text-decoration: none;
}

a:hover {
  color: var(--base-accent-interact);
  text-decoration: underline;
}
