@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600&family=Montserrat:wght@300;400&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    max-width: 650px;
    width: 90%;
    padding: 2rem;
}

.content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #eef;
    margin-bottom: 1.5rem;
}

h1 {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 2.5rem;
    margin: 0;
    color: #0d2a4a;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #007bff;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.message p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

hr {
    border: 0;
    height: 1px;
    background-color: #e0e0e0;
    margin: 2rem 0;
}

.bio p {
    font-style: italic;
    font-size: 0.95rem;
    color: #444;
}

.social-links {
    margin-top: 2.5rem;
}

.social-links a {
    text-decoration: none;
    color: #007bff;
    border: 1px solid #007bff;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    margin: 0 0.5rem;
    transition: background-color 0.3s, color 0.3s;
}

.social-links a:hover {
    background-color: #007bff;
    color: #ffffff;
}

.footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .content {
        padding: 2rem;
    }
    h1 {
        font-size: 2rem;
    }
    .social-links a {
        display: block;
        margin: 0.5rem 0;
    }
}