* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.maincontainer {
  width: 100%;
  height: 100vh;
  background-image: radial-gradient(
    ellipse,
    hsl(200, 25%, 56%),
    hsl(200, 25%, 56%),
    hsl(200, 25%, 56%)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.parent {
  margin: 10px;
  background-image: radial-gradient(
    ellipse,
    hsl(175, 25%, 50%),
    hsl(250, 25%, 35%),
    hsl(175, 25%, 50%)
  );
  border: 2px solid black;
  border-radius: 20px;
  width: 80%;
  height: 500px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.child {
  width: 200px;
  height: 200px;
  border: 2px solid black;
  background-color: white;
  border-radius: 20px;
}
.text {
  display: flex;
  align-items: center;
  justify-content: center;
}

#child1 {
  background-image: url("assets/img.jpg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
}
@font-face {
  font-family: prateek-font;
  src: url("fonts/BitcountSingle-VariableFont_CRSV\,ELSH\,ELXP\,slnt\,wght.ttf");
}
#child2 {
  font-family: prateek-font;
  font-size: 25px;
  font-weight: normal;
}
#child3 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: normal;
}
#child4 {
  background-image: linear-gradient(
    45deg,
    hsl(180, 25%, 58%),
    hsl(180, 25%, 20%),
    hsl(180, 25%, 80%)
  );
  font-family: prateek-font;
  font-size: 20px;
}
#child5 {
  background-image: radial-gradient(
    circle,
    hsl(220, 35%, 50%),
    hsl(220, 15%, 30%),
    hsl(220, 35%, 50%)
  );
  font-family: "Oswald", sans-serif;
  font-size: 25px;
}
