/* 
    Style for the frontend of the website, including the header and other elements.
    This file is part of the JEF 4 Website plugin.
*/
:root {
    --primary-color: #A91816;
    --text-color: #1B1B1B;
    --accent-color: #0084FF;
    --grey-light-color: #F5F5F5;
    --yellow-color: #FAB800;

    --primary-font: "Libre Baskerville", serif;
    --secondary-font: "DM Sans", sans-serif;
    
}
::selection {
  background-color: var(--primary-color);
  color: white;
}
body {
    font-family: var(--secondary-font);
    background-color: white;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
 
a:visited, a:link 
{
    color: inherit;
    text-decoration: none;
}
p {
    margin: 0 0 15px 0;
    padding: 0;
}
* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width:1024px) {
  html
  {
    font-size: 14px;
  }
}

/* --LAYOUT CLASSES-- */

#mainWrapper
{
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 0 25px;
}