/* == GLOBAL STYLES == */
*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  transition: opacity 0.5s ease-out;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
}

p {
  font-weight: 400;
}

h1 {
  color: rgba(0, 0, 0, 0.75);
}

.icon {
  font-size: 20px;
  color: #333 !important; /* No idea why !important is necessary, but it is. */
}

code {
  background-color: #eee;
  padding: 1px 5px;
}

kbd,
.shepherd-element.shepherd-theme-arrows .shepherd-content kbd {
  background-color: #fcfcfc;
  font-size: .75em;
  padding: 0.25em 0.4em;
  border-radius: 0.2em;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
}

button {
  font-family: inherit;
}

button[type=button]:active {
  background-color: #f0f0f0;
}

a {
  color: #5a5;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* == HELPER CLASSES == */

/* Class for making semitransparent elements with a blur behind them */
.transparent-blur {
  background-color: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

/* == Class for making divs strech the full screen == */
.fullscreen {
  /* Same size as window */
  width: 100vw;
  height: 100vh;

  /* No space from top corner */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
