
  
  
  .skills-container {
    display: flex;
    justify-content: center;
  }
  
  .skills-list {
    list-style-type: none;
    padding: 0;
  }
  
 
  
  .skill-item {
    display: inline-block;
    padding: 8px 16px;
    margin: 8px;
    background-color: #f2f2f2;
    border-radius: 4px;
    font-size: 2rem;

    color: #333;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Added 'transform' property */
  }
  
  
  
  
  .skill-item:hover {
    background: rgb(228, 50, 50);
    color:white;
    cursor: pointer;
    transform: translateY(-3px); /* Added upward movement */
  }
  
  @media only screen and (max-width: 480px) {
    .skill-item{
        font-size: 18px;
    }

  }