/* comment */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

body {
	background-color: greenyellow;

	/* text color */
	color: blue;
	font-family: Josefin Sans;
	font-size: 21px;
}

#container {
	width: 600px;
	margin: 0 auto;
}

h1 {
	/* text color */
	color: black;
	font-family: Tahoma;
	border: 5px solid black;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
}

a {
	/* text color */
	color: darkred;
}
