body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  color: #111;
  background-image: linear-gradient(rgba(245, 245, 245, 0.5), rgba(245, 245, 245, 0.6)), url("../img/back_1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

a {
  text-decoration: none;
}

header, section {
  padding: 2rem;
  margin: 1rem auto;
  border-radius: 12px;
  max-width: 960px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.profile-pic img {
  width: 200px;
  border-radius: 12px;
  margin: 20px;
}

.icons img {
  height: 50px;
  margin: 5px;
}

.item {
  width: auto;
  padding: 1rem 2rem;
  background: #fff;
  border-radius: 12px;
}

.flex-category {
  display: flex;
  justify-content: space-between;
  padding: 0;
  max-width: 1024px;
  margin: 1rem auto;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.flex-category .item {
  max-width: 500px;
}
.flex-category .left {
  margin: 1rem 0.5rem 1rem 0;
}
.flex-category .right {
  margin: 1rem 0 1rem 0.5rem;
}

button {
  padding: 10px 20px;
  margin-top: 1rem;
  background: #050505;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5rem;
}
.project-list .project {
  display: inline-block;
  margin: 3px;
  padding: 10px 14px;
  background: #ddd;
  border-radius: 8px;
  width: 440px;
}
.project-list dt {
  width: 100pxs;
}

.skills span {
  display: inline-block;
  margin: 6px;
  padding: 6px 8px;
  background: #ddd;
  border-radius: 8px;
}

.gitButton {
  display: inline-block;
  margin: 6px 20px;
  padding: 6px 8px;
  background: #fe1;
  border-radius: 8px;
}

dl {
  border-top: solid 1px #c8c8c8;
}
dl > div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  min-height: 50px;
  border-bottom: solid 1px #c8c8c8;
  padding: 10px;
}
dl > div dt {
  width: 100px;
  flex-shrink: 0;
  margin: 0 15px 0 5px;
}
dl > div dd {
  margin: 0;
}
dl > div dd.title {
  flex: 0.5 0;
}
dl > div dd.link {
  flex: 0;
}
dl > div dd.skill-list {
  flex: 1;
}

.blog-list {
  font-size: 20px;
  margin: 0 0 50px 0;
}
.blog-list a {
  color: #111;
}
.blog-list a img {
  vertical-align: middle;
  height: 18px;
  margin: 0 6px;
  padding: 0px;
}

.contact dl > div {
  align-items: start;
}
.contact dl > div dt {
  width: 120px;
}
dl .contact .mail > div {
  min-height: 30px;
}
.contact textarea {
  min-width: 300px;
  height: 100px;
}

@media (max-width: 768px) {
  header, section {
    padding: 1rem;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}
.fade-up.in-view {
  animation: fadeUp 0.8s ease-out forwards;
}

@media (prefers-color-scheme: dark) {
  body {
    color: #eee;
    background-image: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.6)), url("../img/back_1.png");
  }
  header, section {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  }
  .item {
    background: #1e1e1e;
  }
  .flex-category {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  button {
    background: #555555;
    color: #eee;
  }
  .project-list .project {
    background: #333;
  }
  .skills span, .project-list .project {
    background: #333;
  }
  .blog-list a {
    color: #eee;
  }
}/*# sourceMappingURL=style.css.map */