  @font-face {
   font-family : 'Playball-Regular';
    src: url(Playball-Regular.ttf);
}
  
  html{height:100%;}
 
  #merci{border-radius:25px;
		height:605px;
		width:600px;
		background-color:#94E7C7; 
		border-color:black;
		border:8px solid gray;
		text-align:center;
		font-family:Playball-Regular;
		font-style:oblique;
		font-size:21.5px;
		cellspacing:1px;
		} 
	body{ background-color:#F4F8F6; }
	body{margin:0;}
section{height:100vh;
        background-size:cover;
		display:flex;
		justify-content:center;
		align-items:center;
		animation-name:ground;
		animation-duration:5s;
		animation-iteration-count:infinite;
		animation-timing-function:linear;
	    }
	@keyframes ground{ 0%{filter:hue-rotate(0deg);}
                  100%{filter:hue-rotate(360deg);}
				 }		
