/* Apply cursive font to the entire webpage */
body {
    font-family: cursive;
    background-color: #f0f8ff;
    margin: 30px;
}

/* Blue color for the main title */
h1 {
    color: blue;
}

/* Style the other headings */
h2 {
    color: #333333;
}

/* Paragraph styling */
p {
    font-size: 18px;
}

/* Image styling */
img {
    border-radius: 10px;
}

/* Link styling */
a {
    color: blue;
}