/******************************************************************************
START Glitch hello-app default styles

The styles in this section do some minimal CSS resets, set default fonts and 
colors, and handle the layout for our footer and "Remix on Glitch" button. If
you're new to CSS they may seem a little complicated, but you can scroll down
to this section's matching END comment to see page-specific styles.
******************************************************************************/

/* 
  The style rules specify elements by type and by attributes such as class and ID
  Each section indicates an element or elements, then lists the style properties to apply
  See if you can cross-reference the rules in this file with the elements in index.html
*/

/* Our default values set as CSS variables */
:root {
  --color-bg: #69f7be;
  --color-text-main: #000000;
  --color-primary: #ffff00;
  --wrapper-height: 87vh;
  --image-max-width: 300px;
  --image-margin: 3rem;
  --font-family: "HK Grotesk";
  --font-family-header: "HK Grotesk";

  --grain: url('data:image/svg+xml,    <svg xmlns="http://www.w3.org/2000/svg">      <filter id="grain">       <feTurbulence type="turbulence" baseFrequency="0.5" numOctaves="2" result="turbulence"/>       <feDisplacementMap in2="turbulence" in="SourceGraphic" scale="2" xChannelSelector="R" yChannelSelector="G"/>       </filter>   </svg>#grain');
}

/* Basic page style resets */
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}

/* Import fonts */
@font-face {
  font-family: space;
  src: url("https://cdn.glitch.global/f48e2f72-f388-4adc-bf7c-9eee884a6654/SpaceGrotesk%5Bwght%5D.woff2?v=1650450904313")
    format("opentype");
}
body {
  font-family: "space", Arial, sans-serif;
  font-variation-settings: "wght" 475;
  /*background-image: src("https://cdn.glitch.global/f48e2f72-f388-4adc-bf7c-9eee884a6654/Teaser%20FF%20web%20-%20500px.gif?v=1652983077830");*/
}
#title {
  padding-top: 1rem;
  padding-left: 1rem;
  font-size: 1.1rem;
  position: fixed;
  z-index: 5
}

#title p {
  margin-block: 0;
}
a-scene {
  filter: blur(0px) var(--grain) contrast(1);
}
