html,
body {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* :root {
  --background-color: #121118;
  --primary-text-color: #ccc;
  --secondary-text-color: #666;
  --tertiary-text-color: #aaa;
  --icon-color: #fefefe;
} */

:root {
  --background-color: #e0deda;
  --primary-text-color: #222;
  --secondary-text-color: #333;
  --tertiary-text-color: #666;
  --icon-color: #fefefe;
}

body {
  margin: 0;
  background: var(--background-color);
  color: var(--primary-text-color);
}

#root {
  width: 100%;
  max-width: 780px;
  margin: 0px auto;
  padding: 20px;
  box-sizing: border-box;
}

h1 {
  font-size: 2rem;
  font-weight: 400;
}

.row,
std-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.col,
std-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

std-spacer {
  flex-grow: 1;
}

hr {
  width: 100%;
}

.project-link {
  position: relative;
  text-decoration: none;
}

.project-link:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: -2px;
  /* border-bottom: 4px dotted #85c6d1; */
  z-index: -1;
}

a {
  color: var(--secondary-text-color);
}

a:visited {
  color: var(--secondary-text-color);
}

#experience-list {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

std-experience {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  std-experience {
    flex-direction: column;
    margin-bottom: 40px;
  }
  std-date-range {
    color: var(--secondary-text-color);
  }
}

std-date-range {
  width: 140px;
  flex-shrink: 0;
}

std-label {
  font-size: 1rem;
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}

std-description {
  font-size: 1.15rem;
  margin-top: 0.75rem;
  margin-bottom: 0.125rem;
  color: var(--secondary-text-color);
}

std-location {
  font-size: 1.375rem;
}

std-location a:hover {
  color: var(--primary-text-color);
  text-decoration: underline;
}

std-project {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

std-project-list {
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--tertiary-text-color);
}

/* std-language {
  display: none;
} */

svg {
  color: var(--icon-color);
}

hr {
  flex-shrink: 0;
  background-color: black;
  height: 1px;
  width: 100%;
  outline: none;
  border: none;
  margin-top: 4px;
  margin-bottom: 4px;
}
