/*
  Global style settings
*/

:root {
    --default-line-height: 1.5;
}

/*
  Global style resets
*/
  
html {
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1;
    height: 100%;
}
  
body {
    box-sizing: border-box;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    height: 100%;
}
  
h1,
h2,
h3,
p,
ul {
    margin: 0;
    font-weight: 500;
}

a {
    text-decoration: underline;
    color: black;
}

a:hover {
    text-decoration: none;
    background-color: var(--menu-button-hover-color);
}

main {
    width: 100%;
}
  
/*
  Style rules
*/

/*
  Screen <= 768px 
*/

@media only screen and (max-width: 768px) {
}

/*
  Screen <= 1024px and > 768px
*/

@media only screen and (min-width: 768.1px) and (max-width: 1024px) {
}

/*
  Screen > 1024px
*/

@media only screen and (min-width: 1024.1px) {
}

