﻿/*GLOBAL CSS - USE THIS FOR CHANGES THAT APPLY TO EVERY PAGE REGARDLESS OF TEMPLATE*/
:root {
    --liquid-glass-strength: 3px;
    --background-colour: #202020;
    --box-colour: #282828;
    --shadow: 0px 0px 7px 3px rgba(255, 255, 255, 0.3);
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Variable.ttf') format('truetype');
    font-weight: auto;
    font-style: normal;
}

@font-face {
    font-family: 'OverpassMono';
    src: url('../fonts/Overpass-M.otf') format('opentype');
    font-weight: auto;
    font-style: normal;
}

@font-face {
    font-family: 'OverpassMonoBold';
    src: url('../fonts/Overpass-MBold.otf') format('opentype');
    font-weight: auto;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik.ttf') format('truetype');
    font-weight: auto;
    font-style: normal;
}

body {
    display: flex;
    flex-direction: column;
    background-color: var(--background-colour);
    color: white;
    margin: 0px;
    padding: 0px;
    height: 100dvh;
    align-items: center;
    font-family: 'Satoshi';
}

p, h1, h2, h3, h4 {
    margin-block: 0.5em;
}

a {
    color: white;
    text-decoration: none;
    font-style: italic;
}