
.divcontainer{
	text-align: center;
	display: flex;
	justify-content: center;
}
/* .img{
	margin: auto;
    display: block;
    width: 90%;
	max-width: 850px;
	min-width: 500px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
} */
.click{
	cursor: pointer;
}

.divimg{
	margin: auto;
    display: block;
    width: 90%;
	max-width: 850px;
	min-width: 500px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@font-face {
	font-family: 'DS-DIGIB.TTF';
	src: url(../ds_digital/DS-DIGIB.TTF);
}

.display{
	font-family: 'DS-DIGIB.TTF', sans-serif;
	text-align: right;
	left: 344px;
    background-image: url(../img/fundo.png);
    margin-top: -765px;
    position: absolute;
    width: 300px;
    height: 59px;
    font-size: 4.7rem;
}
.pulse {
	animation: pulse 1s infinite;
  }
  
  @keyframes pulse {
	0% {
	  transform: scale(1);
	}
	50% {
	  transform: scale(1.1);
	}
	100% {
	  transform: scale(1);
	}
  }