@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;0,700;1,900&display=swap");

/* Credit to YouTube Channel "Coding Market" for the CSS template tutorial and design that I used as the base for the style. https://www.youtube.com/watch?v=zAVhHHS_IH4&t=11s */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Montserrat", sans-serif;
}

body {
  background: black;
  font-size: 16px;
  line-height: 22px;
  color: #555555;
}

.bold {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
.extra_bold {
  color: black;
  padding-top: 6px;
  padding-bottom: 8px;
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
}

.semi_bold {
  font-weight: 600;
  font-size: 16px;
}

.resume {
  width: 1200px;
  height: auto;
  display: flex;
  margin: 20px auto;
}

.resume .resume_left {
  width: 400px;
  background: rgb(89, 113, 250);
  padding: 25px;
}

.resume .resume_left .resume_profile {
  width: 100%;
  height: 250px;
}

.resume .resume_left .resume_profile img {
  width: 100%;
  height: 100%;
}

.resume .resume_left .resume_content {
  padding: 0 25px;
}

.resume .title {
  margin-bottom: 20px;
  color: black;
}

.resume .resume_info .title .regular {
  color: white;
}

.resume .resume_left .resume_content .resume_item .resume_info .ul .li .data {
  color: white;
}

.resume .resume_left .bold {
  color: white;
}

.resume .resume_left .resume_content .resume_skills .skills_name ol {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  list-style-type: none;
  line-height: 16px;
  color: white;
}

.resume .resume_left .resume_content .resume_skills .skills_name li {
  text-align: left;
  display: inline-block;
  width: 100%;
  padding-bottom: 20px;
  margin: 0;
}

.resume .resume_item {
  padding: 25px 0;
  border-bottom: 2px solid white;
}

.resume .resume_left .resume_item:last-child {
  border-bottom: 0px;
}

.resume .resume_left ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.resume .resume_left ul li:last-child {
  margin-bottom: 0;
}

.resume .resume_left ul li .icon {
  width: 30px;
  height: 30px;
  color: #353636;
  position: relative;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 16px;
  position: relative;
}

.resume .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.resume .resume_left ul li .data {
  color: white;
}

.resume .resume_left .resume_content .resume_certs img {
  width: 70%;
  height: 70%;
}

.resume .title {
  text-align: center;
}

.resume .resume_right {
  width: 975px;
  background: #fff;
  padding: 25px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.resume .resume_right .resume_work ul {
  padding-left: 40px;
}

.resume .resume_right ul li {
  position: relative;
}

.resume .resume_right ul li .date .semi_bold {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.resume .resume_right ul li .info {
  margin-bottom: 20px;
}

.resume .resume_right ul li:last-child .info {
  margin-bottom: 0;
}

.resume .resume_right .work_tasks li {
  position: relative;
  padding: 2px;
}

.resume .resume_right .work_tasks li::before {
  content: "\2022";
  color: black;
  font-size: 2em;
  display: inline-block;
  width: 10px;
  margin-left: -1.1em;
  position: absolute;
}

.resume .resume_right .work_tasks li:last-child {
  margin-bottom: 15px;
}

.resume .resume_right .resume_projects ul {
  padding-left: 40px;
}

.resume .resume_right .resume_projects li {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

.resume .visitor_counter {
  text-align: center;
}
