/** Definierar återanvändbara värden samt standardinställningar för dimensioner och teckensnitt **/
:root {
  --brand-primary: #FEDF62;
  --brand-primary-variant: #005180;
  --brand-secondary: #A3DDFF;
  --brand-secondary-variant: #e2f5ff;
  --brand-on-primary: #38383b; 
  --brand-on-primary-variant: white;
  --brand-background: #f0f0f0;
  --brand-surface: white;
  --brand-divider: #bababa;
  --main-w-mobile: 95%;
  --main-w-tablet: 80%;
  --main-w-desktop: 60%;
  font-family: "Sulphur Point", sans-serif;
  font-style: normal;
  font-size: 1.3rem;
  font-weight: 400;
}

/** Gäller hela dokumentet och body-taggen **/
html, body {
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-color: var(--brand-background);
  color: var(--brand-on-primary);
}

/** Gäller rubriker **/
h1, h2, h3, h4 {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
  box-sizing: border-box;
}

h1 {
  background-color: var(--brand-primary-variant);
  color: var(--brand-on-primary-variant);
  font-size: 1.7rem;
  margin-top: 0;
  align-items: center;
}

h2 {
  font-size: 1.5rem;
  align-items: center;
}

h3 {
  font-size: 1.2rem;
  align-items: center;
  background-color: var(--brand-primary-variant);
  color: white;
}

h4 {
  font-size: 1rem;
  align-items: start;
}


