
.stats_container{
  position: relative;
  top: -50px;
  width: 100%;
  display: flex;
  justify-content:center; 
}

.stat{
  background-color: white;
  width: 25vw;
  height: 25vw;
  max-width: 500px;
  max-height: 500px;
  box-shadow: 10px 11px 55px -15px rgba(125,125,125,0.5);
  -webkit-box-shadow: 10px 11px 55px -15px;
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  justify-content:center;  
  overflow: hidden;
  position: relative;
  color: #232a34;
  z-index:1;
}

.normal{
  top:0px;
}
.higher{
    top:-50px;
}

.highest{
    top:-100px;
}

.stat_info_container{
  width: 70%;
  height: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat_divider{
  width: 20px;
  height: 100%;
 
}
.stat_value{
  font-size: 40pt;
  font-weight: bold; 
  text-align: center;
}

.stat_value_small{
  font-size: 30pt;
}
.stat_text{
  font-size: 18pt;
  text-align: center;
}

.divider_horizontal_container{
  height: 40px;
  width: 100%;
  display: flex;
  align-items:  center;
  justify-content:center; 
  margin-top: -5px;
}
.divider_horizontal{
  height: 3px;
  width: 70px;
  background-color: #e33e28;
}

.come-in {
  transform: translateY(150px);
  animation: come-in 0.8s ease forwards;
}

@keyframes come-in {
  to { transform: translateY(0); }
}


@media only screen and (max-width: 1450px){
  .stat_text{
    font-size: 16pt;
  }
}

@media only screen and (max-width: 1250px){
  .stat_text{
    font-size: 15pt;
  }
  .divider_horizontal_container{
    height: 30px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 1180px){
  .stat_text{
    font-size: 14pt;
  }
}
@media only screen and (max-width: 1120px){
  .stat_value{
    font-size: 45pt;
  }
    .divider_horizontal_container{
    height: 20px;
  }
}
@media only screen and (max-width: 1000px){
  .stat_value{
    font-size: 40pt;
  }
  .stat_text{
    font-size: 13pt;
  }
}
@media only screen and (max-width: 900px){
  .stat_value{
    font-size: 35pt;
  }
  .stat_text{
    font-size: 13pt;
  }
  .divider_horizontal_container{
    height: 25px;
    margin:5px 0px;
  }
}
@media only screen and (max-width: 800px){
  .stats_container{
    height: auto; 
    flex-direction: column;
      align-items:  center;
  }

  .stat_info_container{
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

 
  .stat{
    width: 60vw;
    height: 50vw;
    margin-bottom: 20px;
  }

  .higher{
    top:0px;
}

.highest{
    top:0px;
}
}

@media only screen and (max-width: 500px){
  .stat{
    width: 90vw;
    height: 65vw;

  }
  }