
body {
    margin: 0;
    background-color: rgb(225, 223, 217);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #163103;
}

header a {
    color: rgb(225, 223, 217);
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
}

header .site-title a {
    font-family: Instrument Serif;
}

header .nav-link a {
    color: rgb(225, 223, 217);
    font-family: Newsreader;
    line-height: 10%;
    text-decoration: None;
    padding-right: 10px;
    padding-top: 10px;
}
.content-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 40px;
    flex-wrap: wrap;
}

.pro-photo {
    width: 300px;
    height: auto;
    flex-shrink: 0;
}

.article-content {
    font-family: 'PT serif', serif;
    max-width: 600px;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

a.file-download {
    text-decoration: none;
    color:inherit;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 10px; /* spacing between photos */
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.photo-grid img {
    width: 100%;
    height: auto;
    display: block;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px; 
    max-width: 80%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 20px;
    }

    .pro-photo {
        width: 90vw;
        max-width: 350px;
    }

    .article-content {
        text-align: center;
        font-size: 17px;
        padding: 0 15px;
    }

    .article-box.first {
        grid-column: span 1;
    }
}

    
.site-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(225, 223, 217);;
    color: rgb(0,0,0);
    text-align: center;
    font-family: Newsreader;
    font-size: 12px;
}