:root {
  --color-background: #1F1F1F;
  --color-medium-black: #141414;
  --color-background-light: rgb(51, 51, 51);
  --color-text: white;
  --color-text-secondary: #b3b3b3;
  --color-text-tertiary: #d7d7d7;
  --color-blue: #3C82DA;
  --color-pink: #E6005F;
}

html {
}

body {
  font-family: 'Manrope', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100vw;
  color: var(--color-text);
}

a {
  text-decoration: none;
}

.cookie-banner {
  display: none; /* set to flex by javascript */
  position: fixed;
  left: 50vw;
  transform: translateX(-50%);
  bottom: 40px;
  width: 50%;
  min-width: 344px;
  padding: 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  font-size: 16px;
  background-color: #101010;
  color: #fff;
  box-shadow: 0 0 18px rgba(0,0,0,.25);
  text-align: left;
}

.cookie-banner a {
  color: #3c82da;
}

.cookie-button {
  margin-left: 16px;
  width: 100px;
  display: inline-block;
  background-color: white;
  padding: 4px 8px;
  font-size: 14px;
  text-align: center;
  color: black;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}
