body {
  background-image: url('/static/back.png');
  font-family: 'Fira Code', monospace;
  color: white;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.header {
  text-align: center;
  margin: auto;
  width: 100%;
}

.header h1 {
  margin-bottom: 5px;
}

.header p {
  margin-top: 5px;
}

.header .quarter {
  height: 1px;
  width: 220px;
  border: 0;
  background: white;
  margin-top: 10px;
}

.header .iconGrid {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 250px;
  margin: auto;
}

.iconHeader {
  width: 24px;
}

.iconHeader.linkedin,
.iconHeader.github {
  background-image: url('icons/backWhite.png');
  background-repeat: no-repeat;
  background-position: center;
}

.iconHeader.codestats {
  width: 28px;
}

.contentContainer {
  padding-left: clamp(16px, 4vw, 30px);
  padding-right: clamp(16px, 4vw, 30px);
  margin: auto;
  width: min(88vw, 1700px);
}

.introductionContainer,
.achievementContainer {
  margin-bottom: 50px;
}

h3 {
  border-left: solid 5px white;
  padding-left: 15px;
}

.introduction {
  border: solid 1px rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 25px 45px;
  background-color: rgba(33, 33, 33, 0.3);
  margin: 15px;
  font-size: 14px;
}

.introduction p,
.achievements li,
.detailsContainer p {
  font-family: 'Manrope', sans-serif;
  line-height: 1.3;
  font-size: 15px;
  font-weight: 300;
  padding-bottom:5px;
  text-align: justify;
  color: #cdcdcd
}

.ecosystemContainer p.ecosystemIntro {
  font-family: 'Fira Code', monospace;
  color: #cdcdcd
}

.ecosystemContainer p {
  color: #cdcdcd
}

.achievements {
  border: solid 1px rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 25px;
  background-color: rgba(33, 33, 33, 0.3);
  margin: 15px;
}

.achievements li {
  font-size: 14px;
  margin-bottom: 15px;
  margin-left: 35px;
  margin-right: 35px;
}

.achievements li:last-child {
  margin-bottom: 0;
}

/* .skillsListContainer {
} */

.skillsList {
  padding: 15px;
}

.categoryContainer {
  border: solid 1px rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 25px;
  padding-top: 0;
  background-color: rgba(33, 33, 33, 0.3);
  margin-bottom: 30px;
}

.categoryContainer h4 {
  text-transform: uppercase;
}

.skillsContainer {
  padding: 15px;
  padding-left: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
}

.skillContainer {
  width: 95px;
  height: 85px;
  padding-top: 15px;
  border-radius: 10px;
  margin-bottom: 5px;
}

.skillContainer:hover {
  background-color: rgba(100, 100, 100, 0.3);
}
.skillContainer:hover .iconContainer img {
  animation: flip 1s ease 1;
}

.iconContainer {
  text-align: center;
}

.iconContainer img {
  height: 50px;
}

.skillContainer p {
  font-size: 11px;
  margin-top: 0;
  text-align: center;
}

.skillContainer p a {
  font-style: italic;
  color: #ddd;
}

/* .foliosListContainer {
} */

.foliosList {
  padding: 15px;
}

.folioContainer {
  padding: 15px;
  border: solid 1px rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 25px;
  background-color: rgba(33, 33, 33, 0.3);
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

@media only screen and (max-width: 640px) {
  .folioContainer {
    flex-direction: column;
  }

  .imageContainer {
    margin-bottom: 5px;
  }

  .detailsContainer h4 {
    text-align: center;
  }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .folioContainer {
    flex-direction: column;
  }

  .imageContainer {
    margin-bottom: 5px;
  }

  .detailsContainer h4 {
    text-align: center;
  }
}

.imageContainer {
  width: 300px;
  margin-right: 30px;
}

.imageContainer img {
  width: 300px;
  height: 168px;
}

.detailsContainer h4 {
  margin-top: 0;
}

.detailsContainer p {
  text-align: justify;
  font-size: 14x;
  line-height: 1.3;
  font-weight: 300;
}

.detailsContainer h5 {
  margin-bottom: 5px;
}

.stackContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.stackContainer a {
  padding: 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-items: center;
}

.stackContainer a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.stackContainer img {
  height: 25px;
}

.wakatimeGraph {
  text-align: center;
  margin: 40px auto;
  width: 75%;
}

@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(90deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  75% {
    transform: rotateY(270deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
