.container {
  margin: 35px auto;
  height: 600px;
  width: 400px;
  display: grid;
  grid-gap: 40px 0px;
  grid-template-rows: 1fr 1fr 1fr;
}

.circle-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
	background-color: #FFBFBF;
  border-radius: 87px;
  margin-left: 16px;
  box-shadow: 4px -1px 4px gray inset;
}

.circle-2 {
 	display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
	background-color: #BFD9FF;
  border-radius: 87px;
  margin-left: 16px;
  box-shadow: 4px -1px 4px gray inset; 
}

.box{
	height: 175px;
  width: 500px;
	background-color: #21EABB;
  box-shadow: 4px 1px 5px gray;
  display: flex;
  align-items: center;
  margin: auto;
  margin-top: 20px;
  border-radius: 100px;
  text-align: center;
}

.box-1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-family: arial;
}

.box-2 {
  font-family: arial;
}

.text {
  text-align: center;
  margin: 70px;
  display: flex;
  flex-direction: column;
}

h1, p {
  margin: 0;
}

h1 {
  font-size: 40px;
}

p {
  font-size: 75%;
  padding-left: 40px;
}

img {
  height: 55%;
}

