@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@700&family=PT+Serif:ital@0;1&display=swap');

* { box-sizing: border-box; }

body {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 100vh;
	margin: 0;
	font-family: "PT Serif", serif;
	font-size: 1.2rem;
	background-color: #F7F4EC;
	@media screen and (min-width: 720px) {
		justify-content: flex-start;
		background-image: url('children_bottom_right.jpg');
		background-repeat: no-repeat;
		background-position: bottom right;
		background-size: cover;
	}
}

.welcome-message {
	width: 90%;
    padding: 1rem;
    background: rgba(255,255,255,0.9);
	border: solid 1px black;
	@media screen and (min-width: 720px) {
		width: 66.6%;
		margin-top: 1rem;
	}
    h2 {
		margin: 0;
		font-family: "Cabin", sans-serif;
		font-size: 2.5rem;
	}
	p {
		line-height: 1.8rem;
		&:last-of-type { margin-bottom: 0; }
	}
}