html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flexbox; 
    justify-content: center; /* Center horizontally  */
    /*text-align: center; Ensure text and inline elements are centered within the flex item */
    min-height: 100vh;
    background: #f8f9fa;
}

.container {
    margin: 0 auto;
    padding: 20px;
    max-width: 960px;
}

.translate-container {
    display: flex;
    justify-content: flex-end; /* Aligns children (the widget) to the right */
    margin-bottom: 10px;
}

.slogan {
    font-family: 'Caveat', cursive;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.6em;
}

.card {
    background-color: #fff; /* White background */
    border: 1px solid #ddd; /* Light grey border */
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle shadow for depth */
    padding: 20px; /* Spacing inside the card */
    border-radius: 8px; /* Rounded corners */
    /* max-width: 300px; Maximum width, but can be adjusted */
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 20px;
}

header {
    background-color: #007b00;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background: #f8f9fa;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #007BFF;
}

section {
    margin-bottom: 20px;
}

p {
    line-height: 1.5;
}

img.responsive {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 98%;
    margin-top: 20px;
}

.image-container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap onto the next line */
    justify-content: space-around; /* Adjusts the spacing around items */
  }
  
  .image-container img {
    width: 48%; /* Adjust based on preference */
    max-width: 100%; /* Ensures image does not overflow its container */
    margin-bottom: 0;
  }
  
  /* Media query for screens 600px or narrower */
  @media (max-width: 600px) {
    .image-container {
      flex-direction: column; /* Stacks items vertically */
    }
  
    .image-container img {
      width: auto; /* Resets width for smaller screens */
      margin-bottom: 20px;
    }
}

.image-caption {
    margin-top: 10px;
    margin-bottom: 20px;
}

.centered {
    text-align: center;
}

footer {
    background-color: #f8f9fa;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    bottom: 0;
}
