* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    color: #fff;
    background-color: #588157;
    font-size: 3em;
    padding: 1rem;
}

h3 {
    text-align: center;
    color: #a3b18a;
    background-color: #588157;
}

.container {
    background-color: #588157;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.outer {
    width: 80%;
    max-width: 1200px;
    height: auto;
    background: #a3b18a;
    border: solid 5px #3a5a40;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
}

.inner {
    width: 100%;
    background: #FFFFFF;
    border: 2px solid #3a5a40;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.image-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-evenly;  
    gap: 20px; 
    align-items: flex-start; 
}

.image-item {
    text-align: center; 
    width: 200px;       
    min-height: 300px;  
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image {
    width: 100%;         
    height: auto;     
    border-radius: 8px; 
}

figcaption {
    font-size: 1rem;
    color: #344e41;
    margin-top: 8px;     
    padding: 0 10px;     
    line-height: 1.4;   
    text-align: center;  
    word-wrap: break-word; 
}

#side {
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 1.2rem;
}

#para1 {
    text-align: center;
    font-size: 2rem;
    color: #3a5a40; 
}