h1 {
  color: #ddd;
  margin: auto;
  font-size: 5rem;
  border-bottom: 3px solid orange;
}

/*** Hero section ***/
#hero-description {
  display: block;
  width: 50%;
  margin: auto;
}

#hero-description h2 {
  color: white;
  font-size: 3rem;
  font-family: "Roboto Mono";
  margin-left: 75px;
}

#hero-description p {
  color: white;
  font-size: 1.5rem;
  font-family: "Roboto Mono";
  text-align: justify;
  margin-left: 120px;
  line-height: 2rem;
}

.skill-section-name {
  grid-column: 1 / 3;
  font-size: 3rem;
  color: #ddd;
  font-family: "Roboto Mono";
}

#language-list,
#framework-list,
#technologie-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  grid-column: 3 / 7;
  width: 56rem;
}

.language {
  position: relative;
  background: #3d3e42;
  border-radius: 10px;
  padding: 30px;
  margin: 0.5rem;
  box-shadow: 1px 1px 10px #222;
  display: inline-block;
  width: 10rem;
  height: 10rem;
}

.language img {
  width: 100px;
  height: 100px;
  transition: 0.5s;
}

.language p {
  font-family: "Roboto";
  text-align: center;
  position: absolute;
  top: 80%;
  left: 50%;
  translate: -50%;
  opacity: 0;
  transition: 0.5s;

  background: #333;
  padding: 2px 10px;
  border-radius: 5px;
  white-space: nowrap;

  color: white;
  font-size: 1.25rem;
}

.language:hover {
  background: orange;
  cursor: pointer;
}

.language:hover img {
  translate: 0% -20%;
  transition: 0.5s;
}

.language:hover p {
  translate: -50% -20%;
  opacity: 1;
  transition: 0.5s;
}

.color-orange {
  color: orange;
}
