@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  padding: 10px;
}
.container {
  width: 8.5in;
  height: 11in;
  margin: 1rem auto;
  box-shadow: 1px 2px 10px #dfdfdf;
}

h2 {
  color: #282828;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.site-title {
  padding: 3rem 0 1rem 3rem;
}
.site-title h1 {
  color: #282828;
  font-size: 2rem;
  font-family: "Roboto Mono", monospace;
}
.site-title sub {
  color: #4d4d4d;
  font-size: 1rem;
  font-style: italic;
}
.contact-info {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: #f0f0f0;
}
.contact-info a {
  text-decoration: none;
  color: #4d4d4d;
  font-size: 12px;
}
.contact-info a i {
  color: #282828;
  font-size: 1rem;
  margin-right: 5px;
}

.row {
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 3rem;
}
.column-1 {
  flex-basis: 30%;
}
.column-2 {
  flex-basis: 1px;
  height: 789px;
  background-color: #282828;
}
.column-3 {
  flex-basis: 70%;
}

/* education */
.education {
  margin-bottom: 2rem;
}
.degree {
  margin-bottom: 1rem;
}
.degree-title {
  color: #4d4d4d;
  font-size: 14px;
  margin-bottom: 5px;
}
.university {
  font-size: 12px;
  color: gray;
  margin-bottom: 3px;
}
.year {
  font-size: 12px;
  color: gray;
}

/* experience  */
.experience {
  margin-bottom: 2rem;
}
.experience-item {
  margin-bottom: 1rem;
}
.company-info {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.company-name {
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}
.role {
  font-size: 12px;
  color: #4d4d4d;
  margin-bottom: 5px;
}
.company-job-desc {
  font-size: 12px;
  color: gray;
  line-height: 1.5;
}

/* projects  */
.projects {
  margin-bottom: 2rem;
}
.project-desc {
  font-size: 12px;
  color: gray;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* achivements */
.achivements {
  margin-bottom: 2rem;
}
.achive {
  font-size: 12px;
  color: gray;
  line-height: 1.5;
  margin-bottom: 5px;
}
.achive-title {
  font-weight: bold;
  color: #4d4d4d;
}

/* skills */
.skill {
  font-size: 12px;
  color: gray;
  line-height: 1.5;
  margin-bottom: 5px;
}
.skill-cat {
  font-weight: bold;
  color: #4d4d4d;
}
