/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
 font-family: "bank-printer";
 src: url("fonts/F25_Bank_Printer.ttf");
}

body {
  margin: 30px;
  background-color: white;
  color: white;
  font-family: "bank-printer";
  background-image: url(images/rainbow.png);
}

figure {
  margin-left:10px;
}


h1{
  text-align: center;

}

h2{
  text-align: center;
}


figure img{
  display: block;
  margin-left: auto;
  margin-right: auto;

}

figure audio{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 48%;
}



p {
 text-align: center;
}


.footer {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  /*background-color: red;*/
  color: white;
  text-align: right;
  opacity: 50%;
}

.footer p{
  margin-right: 10px; 
}



.formkit-powered-by-convertkit{
  display: none !important; 
}

.formkit-field{
   font-family: "bank-printer" ;
}

.formkit-form div{
 padding-top: 0px !important; 
}

.formkit-form {
 display: block !important; 
 margin-left: auto !important; 
 margin-right: auto !important;  
}

.photo {
  min-height: 15em;
  max-height:30vw;
  width: auto;
  
}

.rainbow{
  position: relative;
  /*filter: drop-shadow(2px 2px black);*/
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.rainbow:before{
  background: linear-gradient(to right, #ef5350, #f48fb1, #7e57c2, #2196f3, #26c6da, #43a047, #eeff41, #f9a825, #ff5722);
  /*text-shadow: 5px 5px 5px linear-gradient(to right, #ef5350, #f48fb1, #7e57c2, #2196f3, #26c6da, #43a047, #eeff41, #f9a825, #ff5722);*/
    position:absolute;
    z-index: -1;
    top: 2px; left: 2px;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(transparent, navy);*/
    background-clip: text;
    -webkit-text-fill-color: transparent;
    content: attr(data-text);
  
   
}



