/* Fonts */
@font-face {
  font-family: "Rubik";
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url(/assets/sprexle-fonts/rubik/rubik-variable-wght.ttf);
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Rubik_Italic";
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url(/assets/sprexle-fonts/rubik/rubik-italic-variable-wght.ttf);
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Main Contents */
html {
    background-image: linear-gradient(#e4fff9, #e4feeb);
}

body {
  font-family: "Rubik";
  font-weight: 300;
  background-size: 100vw 100vh;
  margin: 0px;
  padding: 0px;
  margin-top: 110px;
}

blockquote {
  font-family: "Rubik_Italic";
}

.box {
  border-radius: 8px;
  background: rgba(8, 209, 72, 0.5);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 1));
  background-image: linear-gradient(#b2ffee, #b1fcc5);
  color: black;
  padding: 12px;
  margin: 10px;
}

/* Header */
header {
  font-family: "Rubik";
  font-weight: 300;
  align-items: center;
  display: flex;
  background: rgba(0, 0, 0, 0.5);
  padding-left: 20px;
  height: 100px;
  width: 100vw;
  margin: 0px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: fixed;
  top: 0px;
  z-index: 1;
}

h1 {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 1));
  display: inline-flex;
  background: linear-gradient(#66ffc0, #64fa8c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  cursor: url('/assets/icon-32.png'), auto;
  font: 300 50px "Rubik";
}

p {
  font: 300 18px "Rubik";
  line-height: 18px;
  text-align: justify;
}

h2 {
  font: 500 18px "Rubik";
  line-height: 18px;
}

.version-bubble {
  border-radius: 6px;
  background-color: #ff9d7f;
  padding: 5px;
  font-family: "Rubik";
  font-weight: 500;
  display: inline;
}

.navigation {
  text-decoration: none;
  text-transform: uppercase;
  display: inline;
  color: white;
  font-family: "Rubik";
  font-weight: 500;
  margin-left: 30px;
}