.wallcounter{
  overflow: hidden;
  background: green;
  color: white;
  padding: 40px;
  padding-top: 40px;
  border-radius: 15px;
  max-width: 1000px;
  margin: auto;		}

.wrapper-ny{
  display: flex;
  justify-content: space-between;
  align-items: center; }

.fields{
  display: flex;
  flex: 1;
  margin-right: 10px;
  position: relative; /* To position :after psuedo element */
  justify-content: center;
  align-items: center;}

.fields:last-of-type{
  margin-right: 0;}

.fields > div{
  flex: 1;
  text-align: center;
  margin-right: 2px;
  background: red;
  font: bold 78px Arial;
  font: bold 10vw Arial;
  border-radius: 10px; }

.fields:after{ /* psuedo element */
  position: absolute;
  content: 'Days';
  left: 0;
  z-index: 1000;
  width: 100%;
  top: 100%;
  margin-top: 10px;
  font-weight: bold;
  text-align: center;}

.fields:nth-of-type(2):after{
  content: 'Hours'}

.fields:nth-of-type(3):after{
  content: 'Minutes'}

.fields:nth-of-type(4):after{
  content: 'Seconds'}


@media screen and (max-width:580px){

	.wallcounter{
	  padding: 35px;
	  padding-top: 5px;
	  }

	.fields:nth-of-type(1):after{
	  content: 'Days'	}
	  
	.fields:nth-of-type(2):after{
	  content: 'Hrs'	}
	
	.fields:nth-of-type(3):after{
	  content: 'Mins'	}
	
	.fields:nth-of-type(4):after{
	  content: 'Secs'	}
}