body {
    margin: auto;
    width: 100%;
    text-align: center;
    /*font-family: 'Exo', 'sans-serif';*/
    /*font-family: 'Work Sans', sans-serif;*/
    /*font-family: myFirstFont;*/
    font-family: myFirstFont, Arial;
    letter-spacing: 0.5px;
}

@font-face {
    font-family: myFirstFont;
    src: url(druk-new.woff2) format('woff2');
}


li {
    font-size: 16px;
	margin: 25px 0;
  /*display:inline;*/
}

p {
    font-size:8.5px;
    color: #999;
}

ul {
	display:inline;
	text-align: center;
	margin-left:auto;
	margin-right:auto;
}
html, body { height: 100%; }

.content {
  display: table;
  height: 100%;
  width: 100%;
  /*padding-bottom: -26px;*/
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  /*padding-bottom: -88px;*/
}

a:link {
    text-decoration: none;
    color: #333;
}

a:visited {
    text-decoration: none;
}

a:visited {
    color: #333;
}
a:hover {
    color: #777; 
}

img {
  -webkit-filter: drop-shadow(5px 5px 5px #ffff00);
  filter: drop-shadow(5px 5px 5px #ffff00);
}

body {
  background: #fff;
}

.moveBox {
  margin:0 auto;
  width:385px;

}

.grow { 
  transition: all .15s ease-in-out; 
}
.grow:hover { transform: scale(1.04); }


.textcenter {
  text-align: left;
  padding-left: 26px;
  padding-right: 26px;
  font-family: 'Montserrat', cursive;
}

#appgrow {
  -webkit-filter: drop-shadow(3px 3px 3px #b3b1b1);
}

img.pulse {
  /* Duration: 2s, infinite repeats, ease-in-out timing */
  animation: pulse-animation 0.888s infinite ease-in-out;
}

/* Define keyframes for the pulse effect */
@keyframes pulse-animation {
  0% {
    transform: scale(1);
    /* Optional: reset opacity or shadow */
  }
  50% {
    transform: scale(1.025);  /* Scale up by 10% */
    /* Optional: adjust opacity or add box-shadow for effect */
    /* opacity: 0.9; */
    /* box-shadow: 0 0 20px rgba(0,0,0,0.5); */
  }
  100% {
    transform: scale(1);
    /* Optional: reset opacity or shadow */
  }
}

