:root {
    --max-width: 900px;
}

html {
  font-family: "Palatino";
}

body {
    padding: 2rem 1.5rem;
}

main {
    max-width: var(--max-width);
    width: 100%;
    margin: 20px auto;
}

nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%
}

/* main tags */


h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-bottom: 0.3rem;
  border-bottom: 1px dotted #777;
  font-size: 16pt;
}

h3 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 14pt;
}

li {
  margin-bottom: 4px;
}

ul {
  margin: 0px;
}

/* custom tags */

/*
The entry-header is used to convey the lines in the resume which have a title
and date associated with the title. The title is left-aligned and the date is
right-aligned.
*/
.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-direction: row;
  margin-top: 10px;
  margin-bottom: 2px;
}

/*
The education-content tag is used to group together the items in the education
section of the resume. Acts as a wrapper to preserve/facilitate the proper
alignment.
*/
.education-content {
  display: flex;
  flex-direction: column;
}

/*
The skills tag is used to make a two-column collection with descriptions of the
skill category along with examples in each respective column.
 */
.skills {
  display: grid;
  grid-template-columns: max-content 1fr;
}
