@charset "UTF-8";
/* Author name : Chan Suet Yee
	Date created : 9 June 2024
	Exercise 3 (Recipe Book)*/
body {
    background-color: #f5f5f5;
    color: black;
    font-family: Georgia, serif;
    font-size: 16px;
    margin: 20px;
}
h1, h2, h3 {
    color: maroon;
    font-family: 'Source Serif 4', serif;
}
h1 {
    font-size: 22px;
}
h2 {
    font-size: 20px;
}
h3 {
    font-size: 18px;
}
.container {
    max-width: 600px;
    margin: auto;
}

