* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  color: #000;
  background: #fff;
  margin: 1rem;
  padding: 0;
}
body > header {
  background: radial-gradient(circle, rgb(72, 123, 244) 0%, rgb(148, 187, 233) 100%);
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: -1rem;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}
body > header::before {
  content: "";
  flex-grow: 1;
  order: 1;
}

#pdfDownload {
  order: 2;
}

h1 {
  color: navy;
  font-size: 32px;
  font-weight: bolder;
}

h2 {
  color: navy;
  font-weight: bolder;
}

p {
  margin: 0;
  padding: 0;
}

#graphs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
#graphs > figure {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#skills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.skillBox {
  width: 14rem;
  transition: 0.4s;
  position: relative;
}

.skillBox::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.2rem;
  background: #eee;
  display: block;
  border-radius: 0.2rem;
  z-index: -1;
}

.skillGrade {
  font-size: x;
  font-weight: bolder;
  width: 10px;
  transition: width 2s;
  background: rgb(255, 130, 0);
  background: linear-gradient(90deg, rgba(255, 130, 0, 0.7) 0%, rgba(255, 0, 0, 0.7) 95%, rgba(255, 0, 0, 0.8) 100%);
  border-radius: 0.2rem;
  color: black;
  padding-left: 0.2rem;
}

#areaGraph > .graph {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid black;
  transform: rotate(180deg);
  transition: transform 2s;
  background: conic-gradient(red 0deg 252deg, green 252deg);
}

#responsibilityGraph > .graph {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid black;
  transform: rotate(180deg);
  transition: transform 2s;
  background: conic-gradient(red 0deg 126deg, green 126deg 180deg, skyblue 180deg 252deg, orange 252deg 324deg, navy 324deg);
}

.graphContainer {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

article > h2 {
  border-bottom: 2px solid #000;
}

.legendContainer {
  display: flex;
  flex-direction: column;
  width: 100px;
  margin-right: 15%;
}

.legend > div {
  margin: 0.5rem;
  white-space: nowrap;
  display: flex;
}

.legend > div::before {
  content: " ";
  min-width: 1rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  margin-right: 0.2rem;
  border-radius: 0.2rem;
}

.frontend::before {
  background: green;
}

.backend::before {
  background: red;
}

.legacy::before {
  background: red;
}

.fixing::before {
  background: green;
}

.scrach::before {
  background: skyblue;
}

.newFeature::before {
  background: orange;
}

.rewriting::before {
  background: navy;
}

#professionalExperience > .content > div {
  display: none;
  width: 100%;
  height: 190px;
  overflow: hidden;
}
#professionalExperience > footer {
  display: flex;
  justify-content: center;
}

.petitle {
  width: 20%;
  font-weight: bold;
  color: black;
}

.pevalue {
  width: 70%;
  font-weight: normal;
}

.peelem {
  padding-bottom: 5px;
  display: flex;
}

.mainTechnologies .pevalue {
  display: flex;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
}

.navBar {
  justify-content: center;
}

.hide {
  display: none;
}

button {
  border: 1px solid transparent;
  border-radius: 0.2rem;
  background: transparent;
  color: navy;
  padding: 0.5rem;
}
button:hover {
  color: #000;
  border-color: #000;
}
button:disabled {
  color: #666;
}

#pdfIcon {
  height: 40px;
}

.disabled {
  pointer-events: none;
}

.enabled {
  pointer-events: auto;
}

.alert {
  width: 80%;
  margin: auto;
  border: red solid 3px;
  padding: 2em;
  background: rgba(255, 0, 0, 0.3);
  color: red;
}

#about p {
  padding: 0 2em;
}

/*# sourceMappingURL=style.css.map */
