/* web/assets/cfbHeavyweights.css */

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.center-image {
    text-align: center;
    margin-bottom: 20px;
}

.center-image img {
    width: 400px;
    height: 300px;
    object-fit: contain;
}

.preamble {
    text-align: justify;
    margin-top: 20px;
}

.small-table-container {
    max-width: 40%;
    margin: 0 auto;
}

.champ-header {
    text-align: center;
    padding: 10px 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    margin-bottom: 10px;
    font-size: 1.3em;
    letter-spacing: 1px;
    width: 100%;
    box-sizing: border-box;
}

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

.table th, .table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.table th {
    background-color: #f2f2f2;
}

.links-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.links-column {
    width: 45%;
}

.links-column a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #34495e;
    font-weight: bold;
    transition: color 0.3s;
}

.links-column a:hover {
    color: #2980b9;
}

.content-section {
    max-width: 80%;
    margin: 30px auto;
    text-align: center;
}

.content-section h3 {
    text-align: center;
    color: #2c3e50;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

.content-section ul {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
    display: inline-block;
    min-width: 60%;
}

.content-section li {
    padding: 8px;
    border-bottom: 1px solid #ecf0f1;
}

.content-section p {
    text-align: center;
}