/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');

body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    text-align: center;
}

/* Navigation Bar */
.nav {
    background: #333;
    padding: 15px 0;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin: 0 15px;
    padding: 10px;
}

.nav a:hover {
    background: #555;
    border-radius: 5px;
}

/* Container */
.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    background: #6d9eeb;
    color: white;
    padding: 40px 20px;
    font-size: 28px;
}

/* About Author Section */
.bio {
    font-size: 14px !important; /* Forces the font size to apply */
    color: #333;
    margin-top: 20px;
    text-align: left;
    padding: 0 20px;
}

}

/* Contact Form */
.contact-form {
    margin-top: 20px;
    text-align: left;
    padding: 0 20px;
}

.contact-form label {
    font-size: 18px;
    display: block;
    margin-top: 10px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #005bb5;
}

/* Social Links */
.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #0073e6;
    text-decoration: none;
    font-size: 18px;
    display: block;
    margin-top: 5px;
}

.social-links a:hover {
    text-decoration: underline;
}

