/* Skills */
.skills {
  position: relative;
}

.skills-container {
  display: flex;
  flex-flow: row wrap;
  width: 900px;
  max-width: 90%;
  justify-content: space-evenly;
  gap: 30px;
  z-index: 2;
}

.skill-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 3em;
}

.text-box {
  padding: 40px;
  width: 750px;
  max-width: 90%;
  display: flex;
  justify-content: center;
  background-color: rgba(226, 226, 226, 0.774);
  border-radius: 15px;
  line-height: 1.7;
  margin-bottom: max(20px, 10vh);
  border: 3px double rgba(153, 153, 153, 0.63);
}

.text-box p {
  font-size: 1.1em;
  font-family: "Roboto";
}

.card-box {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.card-row {
  display: flex;
  flex-direction: row;
  gap: 7px;
}
.skills .card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 2px 2px rgba(63, 63, 63, 0.555);
  font-family: "Roboto";
}
.skills .card:hover {
  transform: translateY(-2px);
}

.skills .card img {
  padding: 5px 10px 5px 10px;
  width: 100%;
  height: auto;
}

.skills .card .card-text {
  text-align: center;
}
