@import url("https://fonts.googleapis.com/css?family=Lato:300");
*, *::before, *::after {
  box-sizing: border-box;
}

body .wrap-circles{
  font-family: "Lato";
  font-size: 12px;
}

/*** <--- CIRCLE STYLES ---> ***/
.wrap-circles {
  display: flex;
/*  min-height: 100vh; */
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
/*  padding: 2rem 1rem; */
  background: #f6f9fd; 
}

.circle {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0.5rem;
  border-radius: 50%;
  background: #FFCDB2;
  overflow: hidden;
}
.circle .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  background: #f6f9fd;
  border-radius: 50%;
  font-size: 1.85em;
  font-weight: 300;
  color: #465376;
}