
body {margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;}

#top-banner {width: 100%;
  height: 25px;
  background-color: #ff0000;}

#title-bar {background-color: #fffd33;
  text-align: left;
  padding: 5px 15px;}

#title-bar h1 img 
{height: 40px;
  width: auto;
  vertical-align: middle;
  margin: 0;}

.image-box h2 img 
{height: 75px;
  width: auto;
  vertical-align: middle;}

#title-bar h1 {font-family: 'Beau Rivage', cursive;
  color: #000000;
  font-size: 28px;
  margin: 0;
  font-weight: 700;}

nav {background-color: #000000;
  text-align: center;
  padding: 10px 0;}

nav a {color: #ffffff;
  font-style: italic;
  font-weight: 700;
  margin: 0 15px;
  text-decoration: none;
  font-size: 16px;}
  

main {background-color: #ffffff;
  padding: 10px 40px 40px 40px; 
  text-align: left;}

#content 
{display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;}


.image-box {text-align: center;
  width: 50%;}

.image-box img {width: 65%;
  border-radius: 15px;
  box-shadow: none;}


.text-box {background-color: #e6e6e6;
  color: #000000;
  font-size: 18px;
  line-height: 1.6;
  padding: 25px;
  border-radius: 20px;
  width: 45%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);}
  

footer {text-align: center;
  font-style: italic;
  font-weight: bold;
  margin-top: auto;}

#footer-black {height: 25px;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;}

#footer-black p {color: #ffffff;
  margin: 0;}

#footer-yellow {height: 25px;
  background-color: #fffd33;}

#footer-red {height: 25px;
  background-color: #ff0000;}
  
  @media (max-width: 900px) 

  {#content {flex-direction: column;
    text-align: center;}

  .image-box, 
  .text-box {width: 90%;}

  .image-box img {width: 80%;}

  main {padding: 20px;}}
  
  
  @media (max-width: 600px) 

  {#title-bar h1 {font-size: 22px;}

  nav a {display: block;
    margin: 8px 0;
    font-size: 14px;}

  .text-box {font-size: 16px;
    padding: 18px;}

  .image-box img {width: 100%;}

  #content {gap: 20px;}}


