.container {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  width: 100vw;
  background-color: hsl(47, 88%, 63%);
}

.item-container {
  height: 100vh;
  width: 500px;
  background-color: hsl(0, 0%, 100%);
  padding: 20px;
  margin-bottom: 70px;
  border-radius: 15px;
}


.img1 {
  border: radius 10px;
  width: 100%;
}

button {
  height: 25px;
  width: fit-content;
  background-color: hsl(47, 88%, 63%);
  border-radius: 5px;
  border: none;
  font-weight: 800;
}

.img2 {
  width: 20px;
  height: 20px;
}

@media only screen and (min-width: 375px) {
  /* Styles for screens wider than or equal to 375px */

  .item-container {
    display: flex;
    width: 50%;
    height: fit-content;
    margin-top: 7rem;
    
    margin-right: 43px;
  }

  button {
    margin-top: 20px;
    width: fit-content;
    height: 33px;
    text-align: center;
    padding-right: 15px;
    padding-left: 15px;
  }

  .img2 {
    height: 40px;
    width: 40px;
  }
}

@media only screen and (max-width: 1440px) {
  /* Styles for screens narrower than or equal to 1440px */

  .container {
    height: 700px;
    width: auto;
  }

  .item-container {
    display:inline;
    width: 300px;
    height: 420px;
    margin-top: 7rem;
    padding-bottom: 50px;
    margin: 20px;
    margin-right: 40px;
  }
  .item2 {
    height: fit-content;
    width: fit-content;
  }
}

#no-underline {
  text-decoration: none;
}

.item2 {
  display: flex;

  gap: 10px;
  font-weight: 800;
  align-items: center;
  color: hsl(0, 0%, 7%);
}

a {
  color: hsl(0, 0%, 7%);
  text-decoration: none;
}

h2 :hover {

color: hsl(47, 88%, 63%) ;

}



