@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --main: #345b63;
  --main-light: #345b63aa;
  --light: #eee;
  --dark: #333;

  --small: 10px;
  --regular: 14px;
  --large: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
}

a {
  color: unset;
  text-decoration: none;
}

body {
  width: 800px;
  height: 1131;
  margin: 0 auto;
  padding: 4px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header {
  width: 100%;
}

main {
  width: 100%;
}

header h1 {
  background: var(--main);
  color: var(--light);
  margin-top: 8px;
  padding: 4px;
  text-transform: uppercase;
  text-align: center;
}

#contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto;
  margin-bottom: 0;
}

.contact-item {
  display: flex;
  margin: 0 10px;
  font-size: var(--small);
  align-items: center;
}

.contact-item i {
  margin-right: 5px;
  color: var(--main);
}

.contact-item a {
  text-decoration: none;
  color: var(--dark);
}

section {
  margin: 8px;
}

section h1 {
  color: var(--main);
  border-bottom: 2px solid var(--main);
  margin-bottom: 4px;
  font-size: var(--large);
  text-transform: uppercase;
}

.row {
  display: flex;
  align-items: center;
}

.column {
  width: 50%;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 30px;
  font-size: var(--small);
}

.column p:first-child {
  font-weight: 500;
}

.column2 {
  width: 100%;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 30px;
  font-size: var(--small);
}

.column2 p:first-child {
  font-weight: 500;
}

.work-item,
.project-item,
.honors-item {
  margin: 5px 0;
}

.work-title,
.project-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--main);
}

.work-condense {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .work-company::before {
  content: '@';
  margin-right: 2px;
} */

.work-company {
  font-size: var(--small);
  color: var(--dark);
  font-weight: 500;
}

.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--small);
  flex: 1;
}

.work-meta * {
  color: var(--main-light);
}

.work-details,
.project-details {
  list-style: none;
  margin: 2px 0;
}

.work-detail,
.project-detail {
  padding-left: 12px;
  font-size: var(--small);
}

.work-detail::before,
.project-detail::before {
  content: '□';
  display: inline-block;
  margin-left: -12px;
  width: 12px;
  color: var(--main);
}

.project-title a {
  display: flex;
  align-items: center;
  vertical-align: middle;
}

.project-title i {
  margin-left: 4px;
  font-size: 0.5em;
  color: var(--main);
}

.project-tags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.project-tags a {
  font-size: var(--small);
  font-weight: 500;
  color: var(--dark);
  display: flex;
}

.project-tags a:not(:last-child)::after {
  content: '/';
  margin: 0 4px;
}

.honors-items {
  display: flex;
  flex-wrap: wrap;
}

.honors-item {
  display: inline-block;
  font-size: var(--small);
  width: 50%;
  margin-bottom: 0 !important;
}

.honors-item:nth-child(2n + 1) {
  padding-right: 12px;
}

.honors-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.honors-event {
  color: var(--main);
  font-weight: 500;
  font-size: 12px;
}

/* .honors-event::before {
  content: '@';
  margin-right: 2px;
} */

.honors-event::after {
  content: '/';
  margin: 4px;
}

.honors-title {
  font-size: var(--small);
  font-weight: 500er;
  color: var(--main);
}

.education-info {
  font-size: 12px;
  color: var(--main);
}

#summary .education-info {
  text-align: justify;
}

.important {
  font-style: italic;
}
