main {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.heading {
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--green);
  font-size: 4.5rem;
}
.listOfItems {
  width: 100%;
  padding: 10px;
}
.listOfItems > .item {
  width: 100%;
  aspect-ratio: 16/7;
  padding: 5px 5px;
  display: inline-block;
  overflow: hidden;
}
.listOfItems>.item>.innerPartOfItemTaz,
.listOfItems > .item > .innerPartOfItem {
  box-shadow: rgb(0 0 0 / 50%) 0px 0px 4px 0px;
  width: 100%;
  border-radius: 5px;
  height: 100%;
  display: flex;
  overflow: hidden;
}
.innerPartOfItem > .img {
  height: 100%;
  border-radius: 5px;
  padding: 5px;
}
.innerPartOfItem > .img > img {
  height: 100%;
}
.innerPartOfItem > .text {
  width: 100%;
  height: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: start;
  text-align: center;
  flex-direction: column;
  color: grey;
}
.innerPartOfItemTaz>.img{
  width: 40%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.innerPartOfItem > .text {
  width: 60%;
}
.innerPartOfItem>.text>div{
  width: 100%;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.innerPartOfItem > .text > p,
.innerPartOfItem > .text > div > p {
  width: 100%;
  text-align: center;
  color: var(--green);
  font-weight: 900;
}
.innerPartOfItem > .text > p > span,
.innerPartOfItem > .text > div > span {
  color: grey;
  font-weight: 600;
  font-size: 10px;
}
.innerPartOfItemTaz > .text > div > span{
  line-height: 15px;
}
.innerPartOfItemTaz >.text>div>button{
  color: var(--green);
  width: 85px;
  overflow: hidden;
  transition: 0.2s;
  font-size: 16px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.innerPartOfItemTaz >.text>div>button:hover{
  width: 110px;
  text-decoration: underline;
}
@media screen and (min-width: 710px) {
  .heading {
    font-size: 2.5rem;
  }
  #tazelikListHTML>.item,
  .listOfItems > .item {
    width: calc(50% - 5px);
    aspect-ratio: 16/7;
    padding: 5px 5px;
  }
  .innerPartOfItem>.text>div{
    padding: 10px;
  }
  .innerPartOfItemTaz > .text > div > span{
    line-height: 20px;
  }
}
@media screen and (min-width: 900px) {
  .innerPartOfItem > .text > p,
  .innerPartOfItem > .text > div > p {
    font-size: 20px;
  }
  .innerPartOfItem > .text > p > span,
  .innerPartOfItem > .text > div > span {
    font-size: 20px;
    line-height: 1;
  }
  .innerPartOfItemTaz >.text>div>button{
    font-size: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .heading {
    font-size: 25px;
  }
}
