body{
	background-color: white;
    width: 700px;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

img{
    
    margin: 0 auto;
    max-width: 90%;
}
p{
	font-size: 250px;
	font-family: arial;
	color: black;
	text-align: center;
}

button{
    color: black;
    border: none;
    background-color: white;
    font-size: 25px;
    transition: all ease-in-out 250ms;

}

button:hover{
    color: white;
    background: #4fe3a1;
    border-radius: 12px;
    transform: translateY(-3px);
    
}