body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  color: black;
  background-color: #ffeebb;
}
body > hr {
  width: 80%;
}
h1 {
  font-size: 2.5rem;
}
.container {
  width: 80%;
  display: flex;
  min-height: 20rem;
  padding: 1rem;
  justify-content: center;
}
.mt-3 {
  margin-top: 3px;
}
img {
  height: 200px;
  border-radius: 10%;
  float: left;
  margin-right: 20px;
}
a {
  color: black;
  text-decoration: none;
}
#main,
#main-contact,
#working-experience,
#education,
#courses {
  display: flex;
  justify-content: center;
}
#main > .container > div:nth-child(1) {
  width: 70%;
  border-right: 1px dashed #4942e4;
}
#main > .container > div:nth-child(2) {
  width: 30%;
}
#main > .container > div:nth-child(2) > .hr-supporter {
  display: none;
}
.container div {
  padding: 20px;
}
/* skill */
ul {
  list-style: none;
  padding-inline-start: 0;
  display: flex;
  flex-wrap: wrap;
}
ul.skill > li {
  padding: 5px;
  border: 1px solid #d7c0ae;
  border-radius: 40%;
  background-color: #d7c0ae;
  color: black;
  margin-right: 10px;
  margin-top: 10px;
}
ul.skill > li:nth-child(2n + 0) {
  border: 1px solid #967e76;
  border-radius: 40%;
  background-color: #967e76;
  color: whitesmoke;
}
ul.skill > li:nth-child(3n + 0) {
  border: 1px solid #ffc26f;
  border-radius: 40%;
  background-color: #ffc26f;
  color: black;
}
/* language */
ul.language {
  flex-wrap: nowrap;
  flex-direction: column;
}
.language > li {
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
}
.language div {
  padding: 0;
}
.language img {
  height: 20px;
  margin: 0;
}
/* interest */
ul.interest > li {
  padding: 5px;
  border: 1px solid #27374d;
  border-radius: 10px;
  color: #27374d;
  margin-right: 10px;
  margin-top: 10px;
}

/* working-experience */
#working-experience > div.container {
  display: block;
}
#working-experience > .container img {
  height: 25px;
  float: left;
  margin-right: 10px;
}
#working-experience p {
  margin-left: 20px;
}
#working-experience ul > li > div {
  display: flex;
  align-items: center;
  padding: 0;
}
#working-experience img[alt='online-pajak logo'],
#working-experience img[alt='JustCommodity logo'],
#working-experience img[alt='Tokopedia logo'] {
  height: 30px;
}

/* education */
#education > div.container {
  display: block;
  min-height: fit-content;
}
#education > .container img {
  height: 25px;
  float: left;
  margin-right: 10px;
}

/* courses */
#courses > div.container {
  display: block;
  min-height: fit-content;
}
#courses > .container img {
  height: 25px;
  float: left;
  margin-right: 10px;
}
#courses ul {
  display: flex;
  flex-direction: column;
}

/* footer */
footer {
  display: flex;
  justify-content: center;
}
footer > div.container {
  min-height: fit-content;
  justify-content: flex-end;
  padding: 2px;
}
footer > div.container ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}
footer > div.container ul li {
  margin-right: 10px;
}
footer > div.container ul li img {
  height: 20px;
  margin-right: 3px;
}

@media (max-width: 951px) {
  #main > .container {
    flex-direction: column;
  }
  #main > .container > div:nth-child(1) {
    width: 100%;
    border-right: 0;
    padding: 0;
  }
  #main > .container > div:nth-child(2) {
    width: 100%;
    padding: 0;
  }
  #main > .container > div:nth-child(2) > .hr-supporter {
    display: block;
  }
}

@media (max-width: 644px) {
  footer > div.container {
    justify-content: center;
  }
  footer > div.container ul {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
  }
  footer > div.container ul li {
    margin-top: 3px;
  }
}
