
.content {
    font-family: 'Roboto Condensed';
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.container {
    max-width: 800px;
    width: 100%;
    background: rgba(32, 36, 32, 0.95) !important;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: rgb(220, 211, 202);
}
.images {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}
.images img {
    max-width: 150px;
    box-shadow: 0 4px 8px rgba(166, 205, 99, 0.8);
}
.content-header {
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}
.content-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

/* Responsive styles for mobile devices */
@media (max-width: 768px) {
    .images img {
        width: 20%; /* Make images take 80% of the container's width */
        margin-bottom: 10px; /* Add spacing between stacked images */
    }
}
