@import url("https://fonts.googleapis.com/css2?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");
 
 
 

.main1{
  width: 100%;
  height: 850px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 4fr 0.8fr;
  column-gap: 12px;
  row-gap: 24px;
}
.txt {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  padding: 20px;
  text-wrap: wrap;
}
.txt h2 {
  font-size: 65px;
  margin: 0;
  color: #286318;
}
.txt p {
  font-size: 25px;
  color: #153d3d;
}
.pictures {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px;
  gap: 10px;
  background: radial-gradient(#153d3dce, #153d3d4f, white, white);
  position: relative;
}
.img {
  width: 30%;
  height: 80%;
  border-radius: 70px;
}
#img1 {
  background-image: url("https://assets-news.housing.com/news/wp-content/uploads/2022/08/18184418/Green-colour-wall-paint-design-ideas-to-give-your-home-a-fresh-look-03.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  align-self: flex-start;
}
#img2 {
  background-image: url("https://cdn.shopify.com/s/files/1/0305/9521/9595/files/Screenshot_2022-04-01_at_08.45.14_480x480.png?v=1648799148");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  align-self: flex-end;
}
#img3 {
  background-image: url("https://i.pinimg.com/736x/05/91/78/0591788328fe38fe3f691b0028630595.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
  align-self: flex-start;
}
 