* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
    background-color:  #335500 ;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
 
.container {
    max-width: 1600px;
    margin: 0 auto;
}
 

header {
    text-align: center;
    margin-bottom: 30px;
}
 
header h1 {
    color: #9e9e9e;
    font-size: 3em;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-transform: lowercase;
}
 
h3 {
    font-size: 50px;
}
 

main {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
 

.left-column {
    background-color: #9e9e9e;
    padding: 20px;
    border: 3px solid #000;
    flex: 1 1 67%;
    min-width: 300px;
    height: 85vh;
}
 

.flex-left {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}
 
.image-container {
    flex: 0 0 auto;      
    width: 15vw;
    right: 0%;
}
 
.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border: 3px solid #000;
}
 
.photo-credit {
    font-size: 0.75em;
    font-style: italic;
    margin-top: 5px;
    color: #333;
}
 
.photo-credit a {
    color: #333;
    text-decoration: underline;
}
 
.content-box {
    flex: 1 1 0; 
    background-color: #9e9e9e;
}
 
.content-box p {
    
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
    font-weight: bold;
}
 
.content-box a {
    
    text-decoration: underline;
}
 

.table-container {
    padding: 15px;
}
 
.table-title {
    text-align: center;
    
    margin-bottom: 20px;
    font-weight: bold;
}
 
th, td, tr {
    border: 1px black solid;
}
 
.table-container h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: bold;
}
 
table {
    width: 100%;
    border-collapse: collapse;
}
 
table td {
    padding: 10px;
}
 
table td.label {
    font-weight: bold;
    width: 120px;
}
 

.right-column {
    background-color: #9e9e9e;
    padding: 25px;
    border: 10px dashed #335500;
    flex: 1 1 400px;
    min-width: 300px;
    height: 85vh;
}
 
.right-column h2 {
    text-align: left;
    font-size: 1.8em;
    font-weight: bold;
}
 
.vintage-card {
    padding: 10px;
    margin-bottom: 20px;
}
 
.vintage-card img {
    width: 15vw;
    border: 2px solid #ccc;
    height: auto;
    display: block;
}
 
.image-caption {
    font-size: 0.75em;
    font-style: italic;
    margin-top: 8px;
    text-align: left;
    color: #666;
}
 
.right-column p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
    font-weight: bold;
}
 
.right-column a {
    color: #8b4513;
    text-decoration: underline;
}
 
.right-column h3 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}
 
.right-column ul {
    font-size: 19px;
    list-style: none;
    padding-left: 0;
}
 
.right-column ul li {
    padding-left: 25px;
    margin-bottom: 8px;
    position: relative;
    font-weight: bold;
}
 
.right-column ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    font-size: 1.2em;
    font-weight: bold;
}
 
 

@media (max-width: 1330px) {
    main {
        flex-direction: column;
        gap: 30px;
    }
 
    .left-column, .right-column {
        width: 100%;
    }
 
    .flex-left {
        flex-direction: column;
        gap: 15px;
    }
 
    .image-container {
        width: 100%;
    }
}
 
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
 
    h3 {
        font-size: 30px;
    }
 
    .right-column h3 {
        font-size: 24px;
    }
 
    .right-column, .left-column {
        border-width: 5px;
        padding: 15px;
    }
}
 figure .image-container{
     float: right;
 }