.container {
  display: flex;
  justify-content: space-between;
}

.column {
  flex: 1;
  margin: 0 10px;
}

.MySkills {
  width: 100%;
  height: 50px;
  background-color: #f0f0f0;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 8px;
  box-sizing: border-box;
  text-align: center;
  margin: 10px auto;
  font-size: 14px; /* Default font size */
}

@media screen and (max-width: 108px) {
  .MySkills {
    width: calc(50% - 20px);
    /* 50% minus 20px for margins */
    font-size: 12px; /* Adjusted font size for small screens */
  }
}

@media screen and (max-width: 1000px) {
  .MySkills {
    width: calc(100% - 20px);
    /* 100% minus 20px for margins */
    font-size: 12px; /* Adjusted font size for small screens */
  }
}
