*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    font-size: 62.5%; 
    /* CSS Variables */
    --color-primary: #5A33F9;
    --color-secondary: #3a3a3a;
    --color-tertiary: #e6e6e6; 
    --color-highlight: #A5A5A5;  /* or Accent color */
    --button-highlight: #3712ca;
    --font-family-primary: 'Helvetica', sans-serif;
}

/* Uncomment to use a custom font that is loaded relatively. */
/* @font-face { 
    font-family: CustomFont;
    src: url('../assets/fonts/custom-font-name.ttf') format('truetype');
} */

/*-------------------------------------------------------------*/
/*                        Mobile First                         */
/*-------------------------------------------------------------*/
/* Mobile first, styles will default to these styles if no values from media queries are met. */

html,
body {
    font-family: var(--font-family-primary);
    /* font-family: CustomFont, 'Helvetica', sans-serif; */ 
    font-size: 1.6rem;
    color: black;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

body {
    /* margin: 1.5rem 2rem; */
    background: var(--color-primary);
}

img {
    max-width: 100%; /* Elastic images and stops horizontal scrollbar. */
}

ol, ul, li {
    list-style: none;
}

em {
    margin: 0 0.75rem;
}

/* Typography */
h1 {
    font-size: 8rem;
}

h2 {
    font-size: 4rem;
}

main {
    text-align: center;
    margin: 10rem;
}
/*-------------------------------------------------------------*/
/*                         Media Queries                       */
/*-------------------------------------------------------------*/

/* Tablet: 768px to 1279px for Android (Most Common) or 810px to 1279px to target iOS */
/* Desktop: 1280px or larger */

/* Tablet Viewport */
@media (min-width: 768px) {
    body {
        background: rgb(132, 204, 223);
    }

}

/* Desktop */
@media (min-width: 1280px) {
    body {
        background: var(--color-tertiary);
    }

}