@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Montserrat", serif;
}
/* .box {
  border: 2px solid black;
} */

#container {
  /* border: 2px solid black; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px;
}

.box {
  border: 2.5px solid black;
  display: flex;
  flex-direction: column;
  place-items: center;
  padding: 0px 20px;
  border-radius: 10px;
}
.img {
  width: 200px;
  height: 200px;
}

.green {
  color: green;
}

.red {
  color: red;
}

p {
  font-weight: 600;
}
h2 {
  font-weight: 800;
}
button {
  width: 200px;
  height: 40px;
  margin-bottom: 20px;
  background-color: rgb(67, 194, 58);
  color: black;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

button:hover {
  background-color: rgb(50, 150, 40);
  color: white;
}
