body {
	font-family: Arial;
	line-height: 1.5;
	width: 100%;
	margin: auto;
	text-align: center;
}

div {
	margin-bottom: 10px;
}

button {
	padding: .65em 1em;
	border-radius: .3em;
	outline: 0;
}

h1 {
	margin: 10px 0px;
}

.container {
	display: flex;
	font-size: 2em;
	justify-content: center;
}

.one, .two, .three {
	margin: 10px;
	padding: 10px;
	font-size: 1em;
	flex-basis: 300px;
}

.one {
	background-color: lightblue;
	order: 1;
}

.two {
	background-color: orange;
	order: 2;
}

.three {
	background-color: green;
	order: 3;
}

div div p {
	font-size: 20px;
}


@media only screen and (max-width: 700px) {

.container {
	flex-direction: column;
	}
}

p:hover {

	cursor: pointer;

}