html, body {
	height:100%;
	background: rgb(243,244,191);
	background: linear-gradient(203deg, rgba(243,244,191,1) 17%, rgba(238,192,236,1) 34%, rgba(212,212,246,1) 51%, rgba(182,231,247,1) 68%, rgba(38,206,244,1) 85%, rgba(172,235,163,1) 100%);
	background-size: auto; 
  	background-repeat: repeat; 
  	background-position: center bottom;

 }
	
.container {
    width: 960px; 
    margin: 0 auto; 
}
h1{
	font-family: Roboto Mono, helvetica, arial, sans-serif;
	font-size:2vw;
	color:#ff00ff;
	text-align:center;
	display: inline-block;
    margin: 20px, 0, 20px 0;
}
p{
	margin-top: 10px;
    font-family: Roboto Mono, helvetica, arial, sans-serif;
    font-size: 1.3vw;
    color: #0080fe;
    text-align: left-right;
    line-height: 3;
}
a {
	font-family:Lato, Helvetica, arial, sans-serif;
	font-size:1.5vw;
	font-weight:bold;
	display:inline-block;
}
a:link, a:visited {
	color:#FF00FF;
	text-decoration:none;
}
a:active, a:hover {
	color:#FFFF00;
	text-decoration:underline;
}
img{
	width: 200px;
    height: auto;
    border-radius: 10px;
}
button {
    background-color: #ff00ff; 
    color: white; 
    padding: 10px; 
    font-size: 15px; 
    border: none; 
    border-radius: 3px; 
}
#wrapper{
	width:60%;
	height:100%;
	margin:0 auto;
	animation:fade-in ease 3s;
    margin-bottom: 20px
}

@keyframes fade-in {
	0%{
		opacity:0;
	}
	100%{
		opacity:1;
}
}
.floating {  
    animation-name: floating;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}
 
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }    
}


