/*** Reset begin - Copyright (c) 2021 Elad Shechter - https://github.com/elad2412/the-new-css-reset ***/
/*** The new CSS Reset - version 1.0.0 (last updated 8.7.2021) ***/

/* Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property */
*:where(:not(iframe, canvas, img, svg, video, input, table, b):not(svg *)) {
    all: unset;
    display: revert;
    outline: revert; /* Reverts to default browser styling for outline */
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove list styles (bullets/numbers) */
ol,
ul {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-width: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}
/*** Reset end ***/

/*** Fonts begin *** /
@font-face {
    font-family: "Lato";
    src: url("fonts/lato/Lato-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Lato";
    src: url("fonts/lato/Lato-Bold.woff2") format("woff2");
    font-weight: bold;
}
/ *** Fonts end ***/

html {
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-display: auto;
    -webkit-font-smoothing: antialiased;
}