/** Declare font roboto as default font for the whole page, importing it from fonts folder */
@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-Regular.ttf') format('truetype');
}

* {
    font-family: 'Roboto', sans-serif;
}

body {
    margin: 0;
    padding: 0; 
    color: rgb(56, 56, 56);
}

:root {
    --emphasis-color: #002060;
    --light-emphasis-color: #ECF7FB;
    --light-text-color: #989C9E;
    --positive-color: #B1D836;
    --dark-positive-color: #82B109;
    --warning-color: #ED8406;
    --negative-color: #CC3E12;
    --dark-bg-color: #4F5659;
}

h1 {
    color: rgb(56, 56, 56);
    margin: 20px 0;
    text-decoration: underline;
}
