/* Jello Layout */
#container {
    width: 80%;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
}

/* Element selectors (multiple elements) */
body {
    background-color: #fff59d; /* yellow-ish */
    font-family: Arial, Helvetica, sans-serif;
}

p {
    line-height: 1.6;
    font-size: 1rem;
}

h1, h2 {
    font-family: Georgia, "Times New Roman", serif;
}

/* Page styling */
h1 {
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    border-bottom: 2px solid #333;
    padding-bottom: 6px;
    margin-top: 25px;
}

/* Class selector */
.intro {
    background-color: #e8f5e9;
    padding: 12px;
    border-radius: 10px;
}

/* ID selector */
#pet-photo {
    display: block;
    margin: 10px 0 15px 0;
    border: 3px solid #333;
    border-radius: 10px;
}

/* Link styling */
a.link {
    color: #0d47a1;
    font-weight: bold;
    text-decoration: none;
}

a.link:hover {
    text-decoration: underline;
}

/* Footer */
#footer-text {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
}
