* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Old Standard TT', serif;
    background-color: #f1e9d8;
    color: #111;
    padding: 30px;
}

h1 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-top: 4px solid black;
    border-bottom: 4px solid black;
    padding: 15px 0;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f8f3e8;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

th {
    background-color: #000;
    color: white;
    font-size: 30px;
    padding: 15px;
    letter-spacing: 4px;
}

.menu td {
    background-color: #222;
    text-align: center;
    padding: 12px;
    border: none;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu td:hover {
    background-color: #444;
}

td {
    padding: 20px;
    vertical-align: top;
    border: 1px solid #bbb;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid black;
    padding-bottom: 10px;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

p {
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
}

td p {
    column-count: 2;
    column-gap: 25px;
    column-rule: 1px solid #ccc;
}

p::first-letter {
    font-size: 40px;
    font-weight: bold;
    float: left;
    margin-right: 6px;
    line-height: 1;
}

@media (max-width: 768px) {
    td p {
        column-count: 1;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }
}

td img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
    filter: grayscale(100%);
    border: 4px solid #000;
}