/* body {
    font-family: Arial, sans-serif;
    padding: 40px;
    background-color: #fff;
  } */

  h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .categories {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .category {
    width: 140px;
    height: 140px;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    margin: auto;
    margin-top: 10px;
     transition: all 0.6s ease-in-out;
  }


  .category.selected {
    background-color: #e63946;
    color: white;
    border: none;
  }

  .category i {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .category.selected i {
    color: white;
  }

  #categoryfirst{
    display: flex;
    margin-left: 100px;
    margin-top: 20px;

  }

  #categoryfirst button{
    width: 20px;
    border: none;
    border-radius: 8px;
    margin-right: 20px;
    height: 30px;
  }
  #categorymainfirst{
    margin-top: 30px;
  }


.category:not(.selected):hover {
  background-color: #e63946;
  color: white;
  border: none;
  transform: scale(1.05);
  transform: rotate(10deg);
}

.category:not(.selected):hover i {
  color: #e63946; 
   color: white;
}
