/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Open+Sans:wght@300;400&family=Georgia&display=swap');

/* General body styles */
body {
    background-color: yellow;
    font-family: 'Open Sans', sans-serif; /* Default font for body */
    margin: 0;
    padding: 0;
}

/* Heading 1 */
h1 {
    font-family: 'Roboto', sans-serif; /* Apply Roboto font for h1 */
    font-size: 2.5em;
    text-align: center;
    color: darkblue;
    margin-top: 20px;
}

/* Heading 2 */
h2 {
    font-family: 'Georgia', serif; /* Apply Georgia font for h2 */
    color: darkgreen;
    font-size: 1.8em;
    margin-bottom: 10px;
}

/* Heading 3 */
h3 {
    font-family: 'Roboto', sans-serif; /* Apply Roboto font for h3 */
    font-size: 1.5em;
    font-style: italic;
}

/* Paragraph text */
p {
    font-size: 20px;
    color: red;
    font-family: 'Open Sans', sans-serif; /* Use Open Sans for paragraphs */
    line-height: 1.6;
    margin: 20px 0;
}

/* Links */
a {
    color: darkblue;
    text-decoration: none;
    font-family: 'Roboto', sans-serif; /* Use Roboto for links */
}

a:hover {
    text-decoration: underline;
}

/* Image styling */
img {
    width: 300px;
    display: block;
    margin: 20px auto;
}

/* Emoji styling */
.emoji {
    font-size: 2em;
    display: inline-block;
    margin-right: 10px;
}

/* Additional styling for the page layout */
.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
