/*default behaivior*/
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

p {
  word-wrap: break-word;
  padding-left: 1rem;
}

header nav ul {
  list-style-type: none;
  font-size: xx-large;
  gap: 10px;
  text-decoration: none;
}

/* GOOD TO  GO */
.profile-image {
  border: 3px solid skyblue;
  padding: 10px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

main,
footer {
  /* text-align: center; */
  width: 80%;
  margin: 0 auto;
}

footer small {
  display: flex;
  justify-content: space-around;
}

.skill-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Distribute items evenly */
}

.skill-item {
  flex-basis: 20%; /* Adjust column width as needed */
  margin-bottom: 15px; /* Spacing between rows */
}

.skill-header {
  margin-bottom: 5px; /* Spacing within the item */
}

.skill-list {
  list-style: none;
  padding: 0;
}

@media only screen and (max-width: 768px) {
  /* Mobile view */
  .skill-container {
    flex-wrap: unset; /* Disable wrapping */
    display: block; /* Make items stack vertically */
  }

  .skill-item {
    flex-basis: 100%; /* Make each item full width */
    margin-bottom: 0; /* Remove additional spacing */
  }
}

