html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background-color: #f4f1ec;
    color: #111;
    font-family: Times New Roman, serif;
}

body {
    display: block;
}

.container {
    width: 700px;
    max-width: 95%;
    margin: 40px auto;
    background-color: #fff;
    border: 1px solid #111;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    font-size: 38px;
    letter-spacing: 2px;
    margin: 10px 0 20px 0;
}

.navbar {
    text-align: center;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    padding: 8px 0;
    margin-bottom: 20px;
}

.navbar a {
    margin: 0 12px;
    color: #111;
    text-decoration: none;
}

.navbar a:hover {
    text-decoration: underline;
}

.content {
    font-size: 17px;
    line-height: 1.5;
}

.content a {
  color: #111;
  text-decoration: underline;
}

.content a:hover {
  text-decoration: none;
}

.ring {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

.ring img {
    width: 240px;
    height: 60px;
    object-fit: contain;
    display: block;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid #111;
    padding: 6px 8px;
    text-align: left;
}

th {
    font-weight: bold;
}

ul {
    margin: 10px 0 20px 20px;
}

.footer {
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    color: #444;
}
