   @font-face {
    font-family: "BMSHumanity";
    src: url("font/BMSHumanity/01_Full_Set/WOFF2/BMSHumanity-Bold.woff2") format("woff2"),
           url("font/BMSHumanity/01_Full_Set/WOFF/BMSHumanity-Bold.woff") format("woff");
   }
* {
  margin: 0;
  /* padding: 10px; */
  box-sizing: border-box;
}


body {
  font-family: "BMSHumanity", sans-serif;
  color: #BE2CBB;
  background: #fff;
  padding: 50px;
  height: 100vh;
  width: 100vw;
  
}

.contentCounter {
  display: flex;
  justify-content: center;
  /* align-self: center; */
  align-items: center;
  font: 18em "BMSHumanity", sans-serif;
  height: 100%;

}

.logo {
  height: 10%;
  text-align: center;
}

.logo img {
  width: 50%;
}

.contentIndex  {
  display: flex;
  font: 8em "BMSHumanity", sans-serif;
  flex-wrap: wrap;
  height: 100%;
}

.contentIndex >div  {
  width: 50%;
  justify-content: center;
  align-self: center;
  text-align: center;
}
.contentIndex div .round {
  border: 1px solid;
  margin: auto;
  border-radius: 100%;
  height: 300px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contentIndex div .round:hover {
  border: 1px solid #fff;
  background-color: #BE2CBB;
  color: #fff;
  cursor: pointer;
}

