:root {
  --font-xmassive: 48px; 
  --font-massive: 36px;
  --font-huge: 28px;
  --font-large: 24px;
  --font-regular: 18px;    
  --font-small: 12px;
  --font-tiny: 8px;  

  --weight-black: 900; 
  --weight-bold: bold;
  --weight-medium: 500;
  --weight-regular: normal;
  --weight-light: 300;    
  --weight-thin: 200;

  --spacer-xtiny: 6px;
  --spacer-tiny: 8px;
  --spacer-small: 16px;
  --spacer-medium: 24px;
  --spacer-large: 48px;
  --spacer-xlarge: 64px;
  --spacer-massive: 112px;

  --color-orange: #FF3E00;
  --color-blue: #231651;
  --color-black: #160C28;
  --color-white: white;

  --small-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);

  --max-with: 1112px;
  --max-width-content: 840px;

  --border-radius-small: 3px;
}

html, body {
  padding: 0;
  margin: 0;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: var(--color-black);
  height: 100%;
  
}

body {
  max-width: var(--max-with);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.content {
  flex: 1 0 auto;
}

h1, h2, p, a {
  margin: 0;
}

a {
  color: #0050a0;
}

a:visited {
  color: #0050a0;
}

button {
  border: 0;
}
