﻿
#frase {
    margin: auto;
    text-align: center;
    position: relative;
}

#frase p {
font-family: Oswald;
font-size: 27px;
color: #111;
padding: 25px;
line-height: 0rem;
}

a.bottone-pulsante {
font-family: Oswald !important;
font-size: 27px;
color: #111 !important;
line-height: 0rem;
margin-left: 10px;
margin-right: 10px;
padding: 2px 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 3px;
border: 2px solid #b63939;
animation: shadow-pulse 1s 90;
}

.bottone-centrale {
text-align: center;
padding: 10px 0 10px 0;
}

a.bottone {
margin-left: 10px;
margin-right: 10px;
font-family: Oswald !important;
font-size: 22px;
color: #111 !important;
line-height: 0rem;
padding: 2px 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 3px;
border: 2px solid #b63939;
}



/* >> pulsazioni
----------------------------------------------------------------------------------------------------*/
@keyframes shadow-pulse
{
  0% {
    box-shadow: 0 0 0 0px rgba(182,57,57,0.53); 
  }
  100% {
    box-shadow: 0 0 0 15px rgba(182,57,57,0.10);
  }
}

@keyframes shadow-pulse-big
{
  0% {
    box-shadow: 0 0 0 0px rgba(182,57,57,0.53);
  }
  100% {
    box-shadow: 0 0 0 70px rgba(182,57,57,0.10);
  }
}






