
.container {
    background: #abb589;
    width: 900px;
    margin: 0 auto;
    padding: 15px;
}
table {
    line-height: 170%;
    color: #333;
    font-family: Helvetica, sans-serif;
    font-size: 11px;
    width: 100%;
    border-spacing: 10px;
        }
        h1 {
            line-height: 21px;
            text-align: center;
            padding-bottom: 20px;
            font-family: Helvetica, sans-serif;
            color: #36251d;
            font-size: 42px;
            letter-spacing: 3px;
        }
        h2 {
            font-family: Georgia, serif;
            font-size: 15px;
            color: #f9f9f9;
            background: #111;
            padding: 2px;
            text-transform: uppercase;
            text-align: center;
        }
        .section-title {
            margin-bottom: 5px;
            font-family: Georgia, serif;
            font-size: 19px;
            color: #fff;
            text-transform: uppercase;
            font-style: italic;
            text-shadow: 1px 1px 0px #000000;
        }
        .bubble-container {
            margin-bottom: 8px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.8);
            padding: 30px;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .bubble-container p {
            font-size: 16px;
            font-family: Arial, sans-serif;
            color: #333;
        }
        .footer {
            text-align: right;
            letter-spacing: 2px;
            word-spacing: 3px;
            text-transform: uppercase;
            font-size: 7px;
        }
        .footer a {
            text-decoration: none;
            color: #333;
        }
        /* Navigation container styling */
        nav.nav-menu {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 10px auto 25px;
        }
        /* Navigation item styling */
        nav.nav-menu a.nav-item {
            padding: 5px 10px;
            border: 4px solid #422d23;
            border-radius: 25px;
            background-color: transparent;
            color: #422d23;
            font-size: 18px;
            font-family: 'Georgia';
            text-decoration: none;
            transition: background-color 0.3s, border-color 0.3s;
        }
        /* Hover effect */
        nav.nav-menu a.nav-item:hover {
            background-color: rgba(92,64,51,0.1);
            border-color: #5C4033;
        }