* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Staatliches", sans-serif;
    /* font-weight: 400; */
    font-style: normal;
}

.bar {

    width: 100%;
    height: auto; /* Change height to auto */
    background-color: #9B3922;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: solid 3px white;
    /* box-shadow: 10px 10px #a7855f; */
    padding: 20px; /* Add padding for spacing */
}

.container {
    width: 90%;
    margin: 0 auto;
  }
  
  .image-container {
    display: flex;
    flex-direction: column; /* Stack images vertically */ 
    align-items: center; /* Center images horizontally */
    margin-top: 20px;
  }
  
  .image-container div {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .image-container img {
    width: 100%;
    border: 3px solid #dd6247;
  }
  
  .image-description {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    color: white;
  }
  
  .image-description a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }