:root {
	--text-primary: white;
	--text-secondary: #FFD090;
	--fsize1: calc(1.825rem + 7.1vw);
	--fsize2: calc(1.375rem + 2.5vw);
	--fsize3: calc(1.275rem + 1.3vw);
}
body { background: #002a34; font-family: 'Merienda', sans-serif; }
h1 { color: var(--text-primary); font-family: 'Raleway', sans-serif; }
p,strong,s	{ color: var(--text-secondary); font-size: 1rem; line-height: 1.9rem; }
p { margin-bottom: 2rem }
s { color: var(--text-primary);font-family: 'Raleway', sans-serif; font-size: 1.3rem;}
main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-content { background-color: transparent !important; border: 0 !important }
.modal-content button { color: white; background-color:white; } 
.modal-header { border: 0 !important; }
.modal-body { padding-top: 0 !important; }
.text-container h1{
  margin: 0;
  color: rgba(0,0,0, .1);
  background-repeat: repeat;
  -webkit-background-clip:text;
  animation: animate 45s ease-in-out infinite;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
}
h1.bg1 {
  background-image: url("../img/paint1.webp");
}
h1.bg2 {
  background-image: url("../img/paint2.webp");
}
h1.bg3 {
  background-image: url("../img/paint3.webp");
}
.fsize1 {
	font-size: var(--fsize1) !important;
	line-height: calc(var(--fsize1) + 0.9rem) !important;
}

.examples img {
	margin-bottom: 1rem;
	max-height: 20vh;
}
.examples a:hover img {
	opacity: .5;
}
.fsize2 {
	font-size: var(--fsize2) !important;
	line-height: calc(var(--fsize2) + 0.9rem) !important;
}

.fsize3 {
	font-size: var(--fsize3) !important;
	line-height: calc(var(--fsize3) + 0.9rem) !important;
}
  @keyframes animate {
    0%, 100% {
      background-position: 5% 5%;
    }
    30%{
      background-position: 95% 95%;
     }
    50% {
      background-position: 5% 95%;
    }
    70% {
      background-position: 95% 5%;
    }   
}