:root{                          
    --clr-dark:black;
    --clr-light:white;
    --clr-medium: grey;

    /* sizes */
    --size-xxs: 0.5rem ;
    --size-xs: 0.75rem;
    --size-sm: 0.875rem;
    --size-base: 1rem;
    --size-lg: 1.125rem;
    --size-xl: 1.25rem;
    --size-2xl: 1.5rem;
    --size-3xl: 1.875rem;
    --size-4xl: 2.25rem;
    --size-5xl: 3rem;
    --size-6xl: 3.75rem;
    --size-7xl: 4.5rem;
    --size-8xl: 6rem;
    --size-9xl: 8rem;
    --size-10xl: 10rem;
}

*{
    margin: 0;
    /*line-height: calc(0.5em + 0.5rem);*/

}
html {
   scroll-behavior: smooth; 
}
html,
body{
    font-family:'Tasa', sans-serif;
    background-color: var(--clr-dark);
    color: var(--clr-light);
    display: flex;
    flex-direction: column;
    height: 100%;
    scroll-behavior: smooth;
    padding-top: 5.5rem; /* increased to ensure content isn't hidden under the fixed header on mobile */
}

/* use border-box sizing for predictable padding on mobile */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
@font-face{
  font-family: "TASAOrbiter";
  src:local("TASAOrbiterText-Regular"),
  url('./assets/fonts/TASA Orbiter/TASAOrbiterText-Regular.otf') 
}
main {
    flex: 1 0 auto;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    user-select: none;
}

button{
    display: inline-block;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
}



