.about-content {
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 1440px;
  padding: 2em 2em;
  height: 600px;
}
.about-me-image {
  width: 100%;
  background: url(../images/Kristian-portrait.jpg) no-repeat 50% 50%;
  background-size: cover;
  background-position: center;
}
.about-me-description {
  width: 120%;
  padding: 0 2em;
}
.about-me-description p {
  color: var(--color-text);
  line-height: 1.4em;
  margin-bottom: 1em;
}

.about-me-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2em;
  margin-bottom: 2em;
  font-weight: 400;
}

.about-me-skills ul li {
  margin: 0;
  margin-bottom: 0.2em;
}

.about-me-awards li {
  margin: 0;
  margin-bottom: 0.4em;
}


@media (max-width: 672px) {
  .about-content {
    flex-direction: column;
    height: auto;
  }
  .about-me-image {
    height: 400px;
  }
  .about-me-description {
    width: 100%;
    padding: 2em 0;
  }
  .about-me-skills ul:last-child {
    margin-top: 1em;
  }
}