/* @import url('http://example.com/example_style.css'); */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');
/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.signature 
{
  font-family: 'Alex Brush', cursive;
  letter-spacing: 12px;
}
.glow {text-shadow: 7px 7px 18px #0069b4, -7px -7px 18px #0069b4;}
.zoom {
  /*padding: 50px;*/
  transition: transform .2s; /* Animation */
  width: 200px;
 height: 100px;
  margin: 0 auto;
}

.mobile-zoom {
  padding: 10px;
  transition: transform .2s; /* Animation */
  width: 15%;
 height: 15%;
}

.mobile-zoom-splash {
  padding: 10px;
  transition: transform .2s; /* Animation */
  width: 15%;
 height: 15%;
}

#mobile-splash-nav {
display:block;
margin-right:auto;
margin-left: auto;
width 50%%;
}


.zoom:hover {
  transform: scale(1.25); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
button.splide__toggle {display:none;}