:root {
  --font: 'Work Sans';
  --primary: #f31212;
  --secondary: #f7ddcf;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;300;400;500&display=swap');

* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

body, h1, h2, h3, h4, h5, h6, p, input, select {
  color: var(--primary);
  font-family: var(--font), sans-serif;
  font-weight: 300;
}

body {
  background-color: var(--secondary);
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 9;
}

section {
  width: 80%;
}

.nav {
  align-items: center;
  display: flex;
  flex: 1;
  margin: 1.5rem 5.5rem;
  justify-content: space-between;
}

.nav-title {
  color: var(--primary);
  text-transform: uppercase;
}

.work-heading {
  color: var(--primary);
  text-align: center;
  font-weight: 600;
}

.section-heading {
  font-size: 24px;
  font-weight: 500;
  margin-top: 3rem;
  text-align: center;
  text-decoration: underline;
}

.work-experience-row {
  align-items: center;
  display: grid;
  font-size: 16px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 2em;
  /* width: 80%; */
}

.work-experience-cell {
  text-align: center;
}

.about {
  width: 60%;
}

.about-content {
  margin-top: 1rem;
}

.about-content:first-of-type {
  margin-top: 2rem;
}

.contact-email {
  color: var(--primary);
  margin: 2rem 0;
  text-align: center;
  width: 100%;
}

.splash {
  height: 20rem;
  margin-bottom: 3rem;
}
