@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
  --navy-blue: #001f3f;
  --bright-orange: #ffa500;
  --muted-orange:#fff3e0;
  --white-text: #fff;
  --dark-text:#1a1a2e;
}

body{
    font-family: 'Merriweather', sans-serif;
    background-color: var(--muted-orange);
}

/*employee privacy*/
.employee-privacy-section{
    padding: 6em 3em;
    line-height: 1.8;
}

.employee-privacy-header{
    text-align: center;
}

.employee-privacy-intro, .employee-privacy-body h3{
    margin-top: 2em;
}

