/* --- FONT IMPORTS --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/* --- RESETS --- */
* {
    margin: 0;
    padding: 0;
}

/* --- GLOBAL COLORS --- */
:root {
    --primary: rgba(255, 195, 98, 1);
    --secondary: #ffb9dd;
    --font: black;
    --dark-gradient: linear-gradient(0deg,#000,#0000 60%);
}

a, a:visited {
    color: var(--font);
    text-decoration: none;
}

/* --- GLOBAL STYLING --- */
body {
    font-family: 'Roboto Mono', monospace;
}

/* --- PRINT STYLING --- */
@media print {

    header, footer, h1, nav {
        display: none;
    }

    header {
        margin: 0 !important;
    }

    main {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
  }

@page  
{ 
    size: auto;
    margin: 20mm 20mm 20mm 20mm;  
} 