/* =========================
   Base Layout
========================= */

body {
    max-width: 850px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.7;
    color: #444;
    background-color: #fafafa;
}

/* =========================
   Typography
========================= */

h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #333;
}

p {
    margin-bottom: 18px;
    font-size: 18px;
}

/* =========================
   Links
========================= */

a {
    color: #2b6cb0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =========================
   Intro Section Layout
========================= */

.intro {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.text {
    flex: 1;
}

/* =========================
   Profile Image
========================= */

.profile {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
}

/* =========================
   Responsive Design
========================= */

@media (max-width: 800px) {
    body {
        margin: 50px auto;
    }

    .intro {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .profile {
        width: 200px;
        height: 200px;
    }
}

