/* 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." */


body {
background-image: url('bg.PNG');
background-attachment: fixed;
background-repeat: repeat;
font-family: "sans-serif";
text-align: center
}

h1 {
  color: white;
  -webkit-text-fill-color: black; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: white;
  font-size: 64px;
}

h2 {
  color: hotpink;
  -webkit-text-fill-color: white; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: hotpink;
  font-size: 64px;
}

h3 {
  color: hotpink;
  -webkit-text-fill-color: white; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: hotpink;
  font-size: 52px;
}

.gradoutline {
background: -webkit-linear-gradient(pink, hotpink);
-webkit-background-clip: text;
-webkit-text-stroke: 4px transparent;
color: black;
font-size:128px;
font-family:arial;
}



 footer {
            text-align: center;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
        }

h4 {
  color: hotpink;
  -webkit-text-fill-color: black; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: hotpink;
  font-size: 32px;
}


.twooutline {
color: white;
font-size: 2em;
font-family:arial;
font-weight:bold;
filter: drop-shadow(0px 1px black) drop-shadow(0 -1px black) drop-shadow(1px 0 black) drop-shadow(-1px 0 black) drop-shadow(0px 1px hotpink) drop-shadow(0 -1px hotpink) drop-shadow(1px 0 hotpink) drop-shadow(-1px 0 hotpink);
}