body {
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
}

header {
    margin-bottom: 1em;
}

.tight-bottom {
  margin-bottom: 4px;
}

.tight-top {
  margin-top: 0;
}



.float-left {
  float: left;
  margin-right: 1em;
  margin-bottom: 0.5em;
}
.text-block {
  overflow: hidden; /* ensures the container wraps floated content */
  text-align: left; /* optional: prevents inherited center alignment */
}







.banner {
            width: 100%;
            height: auto; /* Adjust height as needed */
            background-image: url("banner2_s.png"); /* Replace "PDC24workshop/banner.png"'banner-image.jpg' with your image file */
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
		
.bannerTitle h1 {
            font-size: 1;
            margin-bottom: 0.5em;
			background-color: transparent; /* Semi-transparent background color */
}

.ribbon-menu {
    background-color: #333;
    padding: 0.5em 0;
    width: 100%;              /* Full width */
    box-sizing: border-box;   /* Prevents padding from overflowing */
}

.ribbon-menu ul {
    list-style: none;
    margin: 0 auto;           /* Center the list */
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2em;
    max-width: 600px;         /* Limit width of menu items */
    box-sizing: border-box;
}


/* 
.ribbon-menu {
    background-color: #333;
    padding: 0.5em 0;
	max-width: 600px;   
    margin: 0 auto;
    overflow-x: hidden;

}

.ribbon-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2em;
} */

.ribbon-menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5em 1em;
}

.ribbon-menu li a:hover {
    background-color: #555;
    border-radius: 4px;
}

.centered-text {
    margin-top: 2em;
    padding: 1em;
}



.content-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    text-align: justify !important; /* force override */
    word-wrap: break-word;
}



@media (max-width: 480px) {
  .ribbon-menu {
    padding: 0.5em 0;
    overflow-x: hidden;
  }

  .ribbon-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2em;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .ribbon-menu li {
    width: 100%;
  }

  .ribbon-menu li a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75em 0;
    box-sizing: border-box;
  }
}




