/* General Page Styling */
body {
    background-color: #fff7f0;
    font-family: 'Comic Sans MS';
    margin: 40px;
    color: #333;
    text-align: center;
}

/* Heading */
h1 {
    color: #ff5c8d;
    font-size: 2.8rem;
    margin-bottom: 10px;
}

/* Paragraph Styling */
.intro {
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #444;
}

/* Face Image */
.face-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 20px 0;
    border: 5px solid #ffb347;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Art Gallery */
.art-gallery {
    margin: 30px auto;
}
.art-gallery img {
    width: 180px;
    margin: 10px;
    border: 3px solid #fbbd08;
    border-radius: 10px;
}    

/* Questions Section */
.questions {
    background-color: #ffe6f0;
    margin: 40px auto;
    padding: 20px;
    border-radius: 15px;
    max-width: 700px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.questions ul {
    text-align: left;
    margin: 0 auto;
    display: inline-block;
}
.questions li {
    margin: 10px 0;
}

/* Hyperlinks Section */
.links {
    margin-top: 40px;
}
.links ul {
    list-style-type: none; /* Removed bullet points */
    padding: 0;
}
.links li {
    margin: 10px 0;
}
.links a {
    color: #ff5c8d; 
    font-weight: bold;
    text-decoration: none;
}
.links a:hover {
    color: #fbbd08; 
    text-decoration: underline;
}
