:root {
  --primary: rgb(0, 80, 160);
  --secondary: rgb(255, 20, 99);
  /* --primary: rgb(0, 100, 200); */
}

html,
body {
  position: relative;
  width: 100%;
  height: 100%;
}

body {
  color: #333;
  margin: 0;
  padding: 8px;
  box-sizing: border-box;
  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; */
  font-family: "Raleway", sans-serif;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: var(--primary);
}

label {
  display: block;
}

input:disabled {
  color: #ccc;
}

input[type="range"] {
  height: 0;
}

button {
  color: #333;
  background-color: #f4f4f4;
  outline: none;
}

button:disabled {
  color: #999;
}

button:not(:disabled):active {
  background-color: transparent;
}

button:focus {
  box-shadow: 0 0 0 2px #3399ff;
}

a:focus,
select:focus {
  outline: 1px solid var(--primary) !important;
  outline-offset: 1px;
}

.IE-warning {
  text-align: center;
}

.IE-warning h1 {
  color: red;
  font-family: serif;
  font-size: 3rem;
  animation: blinkingText 1s infinite;
  padding: 16px;
  border: 3px dashed yellow;
}

@keyframes blinkingText {
  0% {
    color: red;
  }
  50% {
    color: red;
  }
  51% {
    color: blue;
  }
  100% {
    color: blue;
  }
}
