@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Moon+Dance&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Concert+One&display=swap");

/* @import "https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css"; */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.mainParent {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: column;
  gap: 3rem;
}

/* .firstChild > img {
  width: 45vw;
  height: auto;
  border-radius: 12%;
} */

@media (max-width: 700px) {
  .mainParent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  /* .firstChild {
    display: flex;
    justify-content: center;
    align-items: center;
  } */
  /* .firstChild > img {
    height: auto;
    width: 100%;
  } */
}

.firstChild {
  display: flex;
  height: 500px;
  width: auto;
  gap: 1rem;
}

.firstChild img {
  height: 100%;
  width: 100%;
}

@media (width <=1031px) {
  .firstChild {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .firstChild img {
    height: 50%;
    width: auto;
  }
}