:root {
    --bg: rgb(170, 206, 229);   /* hazy sky */
    --panel: #EFE6D3;           /* stucco buildings */
    --ink: #5B4A3F;             /* warm taupe, sun-faded wood */
    --heading: #364f63;         /* soft caramel */
    --border: #C9B89A;          /* dried grass on the bank */
    --link: #40667E;            /* canal water */
}

body {
    background-color: var(--bg);
    color: var(--ink);
}

.parent-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
}

.first-container {
    display: flex;
    gap: 40px;
}

.name {
    justify-content: center;
    color: var(--heading);
    font-size: 40px;
    margin-bottom: 40px;
}

.summary {
    justify-content: center;
    width: 800px;
}

.summary-picture {
    width: 400px;
}

.summary-text {
    color: var(--ink);
    font-size: 20px;
}

.summary-text2 {
    color: var(--ink);
    font-size: 18px;
}

table {
    border-collapse: collapse;
    background-color: var(--panel);
    margin-bottom: 40px;
}

td {
    border: 2px solid var(--border);
    text-align: center;
    padding: 10px;
}

.about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-heading, .activities-heading {
    color: var(--heading);
    font-size: 30px;
    margin: 5px;
}

.about-body {
    color: var(--ink);
    text-align: center;
    width: 400px;
    font-size: 18px;
    margin-bottom: 40px;
}

.activities-heading {
    margin-bottom: 20px;
}

.activities-h3 {
    color: var(--heading);
    font-size: 20px;
}

.activities-p {
    color: var(--ink);
    font-size: 17px;
}

a {
    color: var(--link);
}
