@charset "utf-8";
/* CSS Document */

body, h1, h2, h3, h4, p, ul, li {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #739081;
  display: flex;
  justify-content: center;   
  align-items: center;       
  min-height: 100vh;
  text-align: center;
}

#container {
  display: flex;
  flex-direction: column;   
  align-items: center;       
  max-width: 1200px;
  padding: 20px;
}

#navigation ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin: 20px 0;
  padding: 0;
}

#navigation a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

#navigation a:hover {
  color: #0077cc;
}

#header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

#subhead h2 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;                
  justify-items: center;
  margin-bottom: 30px;
  width: 100%;
}

.image-grid img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}

#content p,
#content h2,
#content ul {
  max-width: 800px;
  margin: 15px auto;
  text-align: center;
  line-height: 1.5;
}

#content ul {
  list-style-position: inside; 
  padding: 0;
  text-align: left;            
  display: inline-block;       
}

#footer {
  margin-top: 30px;
  font-size: 0.9rem;
}