/*
    Contains everything that can be used in all pages.
    Primary Font: Lemon Milk Medium (titles or highlight text)
    Secondary Font: Overpass Mass Regular (text and short titles)
    Additional Font: Gotham Light (use as alternative in text)
*/

@font-face {
    font-family: 'Lemon Milk';
    src: url('../../fonts/LEMONMILK-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

.overpass-regular {
    font-family: "Overpass", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    border: none;
}
  
html, body {
    width: 100%;
    height: 100%;
    line-height: 1.5;
    overflow-x: hidden;
}

body {
    background-color: var(--beige);
    color: var(--white);
}
  
/* Remove styles from lists */
ol, ul {
    list-style: none;
}

/* Remove underlining from links. */
a {
    text-decoration: none;
    color: inherit;
    font-family: "Overpass", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
  
/* Sets a standard for box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button, input, textarea, select {
    font: inherit;
    margin: 0;
    font-family: "Overpass", sans-serif;
}

/* table {
  border-collapse: collapse;
  border-spacing: 0;
} */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lemon Milk', sans-serif;
}

p {
    font-family: "Overpass", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

label {
    font-family: "Overpass", sans-serif;
}