.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: blue;
  border-radius: 87px;
  margin-left: 16px;
  box-shadow: 4px -1px 4px orange inset;
}

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

.box{
	height: 175px;
  width: 500px;
	background-color: #66CDAA;
  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;
}

h1, p {
  margin: 0;
}

h1 {
  font-size: 40px;
}

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

div {
  width: 530px;
  height: 212px;
  background-color: #E8E8E8;
  border-radius: 106px;
  box-shadow: 4px 1px 5px gray;
  margin: 20px auto;
}