/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
		background-image:  url(https://images.pexels.com/photos/7676884/pexels-photo-7676884.jpeg?auto=compress&cs=tinysrgb&w=1200);
	margin: 5em;
  background-size: cover;
  background-attachment: fixed;
}

a{
  color: #ffffff;
}
.header-container, 
.section-container
{
  padding: 20px; 
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 1200px;
  Font-family: Dancing Script;
  Font-size: 1.5em;
  text-align: center;
}

h1 {
  color: #D1D0CE;
}
h2, h3 {
  color: #000000;
}

p {
  font-size: 1.3em;
  line-height: 1.6;
}

/*Header and navigation*/
#header {
  	background-color: rgba(0, 0, 0, 0.7);
   	color: white;
  	text-align: center;
}

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

#nav-bar ul li {
  display: inline-block;
  margin: 0 15px;
}

#nav-bar ul li a {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  color: #D1D0CE;
}

#nav-bar ul li a:hover {
  color: #ffd700;
}

/* Float Navigation */
#navigation {
	list-style-type: none;
}

a:link {
  text-decoration: none;
  cursor: auto;
}
a {
  text-decoration: none;
}

#navigation li a {
	float: center;
  display: block;
  padding: 0.5em;
  color: black;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}


/* Main Content */
.section-container {
  background-color: rgba(255, 255,255, 0.9);
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 1.5em;
  font-weight: bold;
}

/* Flexbox for Images */
.image-flexbox {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

figure {
  margin: 0;
  text-align: center;
}

figure img {
  max-width: 100%;
  height: auto;
  border: 2px solid #800000;
  border-radius: 8px;
}

figcaption {
  font-style: italic;
  color: #800000;
  font-weight: bold;
  font-size: 1.3em;
}

/* Footer */
#footer {
  background-color: rgba(0, 0, 0, 0.7);
  color: black;
  text-align: center;
  padding: 20px;
}

#footer p {
  margin: 10px 0;
  font-size: 1.0em;
}

/* Responsive Design */
@media (max-width: 768px)
{
.image-flexbox {
  flex-direction: column;
  align-items: center;
  }
}