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




.rainbow-text{
	position: relative;
	color: #000;
	background: #fff;
	mix-blend-mode: multiply;
  overflow: hidden;
  
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  padding: 2px 4px 6px;
  margin: -2px -4px -6px;
}
.rainbow-text::before{
	content: "";
	position: absolute;
	top:0;right:0;bottom:0;left:-100%;
	background: white repeating-linear-gradient(90deg, #14ffe9 0%, #ffc800 16.66666%, #ff00e0 33.33333%, #14ffe9 50.0%);
	mix-blend-mode: screen;
	pointer-events: none;
  animation: move 1s linear infinite;
}

@keyframes move{
  0%{transform: translateX(0);}
  100%{transform: translateX(50%);}
}

@supports not (mix-blend-mode: multiply) {
	.rainbow-text{
	-webkit-text-fill-color: transparent;
	background-clip: text !important;
	background: white repeating-linear-gradient(90deg, #14ffe9, #ffc800, #ff00e0, #14ffe9);
    text-shadow: none;
	}
	.rainbow-text::before{ content: none; }
}


.container{
  display: flex;
  justify-content: center;
  height: 1000vh;

}
body{
  font-size: 3em;
  font-family: 'Caveat', sans-serif;
  text-align: center;
  margin: 0;
  cursor: url(cursor.png), default;

}

p1{
  position: relative;
  vertical-align: text-bottom;
  top: -495px;  
  font-size: 22;
  font-family: 'Caveat', sans-serif;
  text-align: center;
  margin: 0;
  font-weight: bold;
  -webkit-text-stroke:1px black;

}

h2{
  position: relative;
 font-size: 45;
  font-family: 'Caveat', cursive;
  color: #FFF200;
  text-align: center;
  margin: 0;
  top: -495px;  
  -webkit-text-stroke:1px orange;
  
} 

p0{

  font-size: 20;
  font-family: 'Caveat', sans-serif;
  text-align: center;
  margin: 0;
  font-weight: bold;
 
}

.card {
  position: relative;
  top: -495px;          
  left: 0px;  
}

/* On mouse-over, add a deeper shadow */
.card:hover {

}

/* Add some padding inside the card container */
.container {

}


