body{
    font-family: cursive;
    font-size: 2rem;
    color: rgb(93, 0, 117);
    text-align: center;
    background-color: rgb(253, 237, 249);
}
@media only screen and (min-width: 600px) {
	body{
		margin: auto;
		width: 60%;
	}
	
	main{
		display: grid;
		grid-gap: 1rem;
		/* this makes a 3 column layout, you may choose any number > 1 */
		grid-template-columns: 1fr 1fr 1fr 
	}

    /* write the rest of grid css under here */
}