@charset "UTF-8";
/* CSS Document */

*{ /* affects all elements of the whole page */
	/*get rid of default padding and various other elements*/
	padding: 0;
	margin: 0;

}

html{ /* does the whole page */
	background-color: lightblue;
	align-content: center;
	display: inline-block;
}

body {
  position: relative;
	padding-top: 40px;
}

div.wrapper{
	
	position: absolute;
	left: 27%;
	padding: 40px;
	width: 40%;
	align-content: center;
	border: 8px solid black;
	text-align: center;
	background-color:aqua
	
}
h1{
	text-align: center;
	font-size: 80px;
	padding-bottom: 20px;
	font-family: 'Courgette', cursive;
}

button{
	font-size: 30px;
	padding: 20px;
	
}

button:hover{
	
	background-color: rgba(29,19,19,1.00);
	color: white;
	border-radius: 90%;
}

p{
	align-content: center;
	align-items: center;
	font-size: 45px;
	padding-bottom: 20px;
}


div.gif01
{
	position: absolute;
	 width:40%;
	height: 100%;
	padding-bottom:56%;
	left: 30px;
}

iframe.giphy-embed{
	
	width: 10%;
	height:100%;
	position:absolute;
	frameBorder:"0"; 
}





