  * {
  /*outline: 1px solid red; Keep this for now */
  box-sizing: border-box; /* THIS is the magic line */
}

body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: #FFFFFF;
    color: #0D2B3E;
    min-height: 100%;
    padding: 20px;
    max-width: 100%;
    margin: 0;
}

p {
    font-family: Arial, Helvetica, sans-serif;
}

.headings {
    display: flex;
    flex-direction: row;
    background-color: #3B8EA5;
    border-top-left-radius: 10px; /* Slightly rounded corners */
    border-top-right-radius: 10px; /* Slightly rounded corners */
    text-align: center;
    justify-content: left;
    align-items: center;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    margin: 0;
    height: auto;
}

.heading-text {
    display: flex;
    flex-direction: column;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

h1 {
    display: flex;
    font-size: 60px;
    margin: 0;
    padding: 5px;
}

.headings h2 {
    font-size: 40px;
    margin: 0;
    padding: 5px;
}

.heading-logo {
    width: 200px;
    height: auto;
    margin-right: 70px;
}

.heading-logo img {
    width:  200px;
    height: auto;
    padding: 15px;
}

.nav-bar {
    margin: 0;
}

.nav-bar ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style-type: none;
    background-color: #F5A638;
    justify-content: center;
    margin: 0;
}

.nav-bar li {
    display: flex;
}

.nav-bar li a{
    display: flex;
    color: #FFFFFF;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 27px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 25px;
}

.nav-bar li a:hover {
    background-color: #3B8EA5;
    color: #ffffff;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4) inset;
}

.main-content {
    display: flex;
    flex-direction: column;
    background-color:#FFFFFF;
    margin: 0;
}

.content-box-peach {
    display: flex;
    flex-direction: column;
    background-color:#FADBB3;
    color: #0D2B3E;
    padding: 10px;
}

.content-box-teal {
    display: flex;
    flex-direction: column;
    background-color: #3B8EA5;
    color: #0D2B3E;
    padding: 10px;
}

.main-content h2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.gallery-text-divider {
    display: flex;
    flex-direction: row;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
    justify-content: center;
    margin: auto;
    align-items: center;
}

.main-content img {
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
    object-fit: cover;
}

.content-text {
    display: flex;
    flex-direction: column;
    margin-left: 5px;
    line-height: 1.6;
    max-width: 700px;
}

.content-text h2 {
    align-items: center;
    justify-content: left;
}

.content-text h3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.footer-text {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #F5A638;
    text-align: center;
    font-size: 16px;
    padding: 10px;
    color: #FFFFFF;
    border-bottom-left-radius: 10px; /* Slightly rounded corners */
    border-bottom-right-radius: 10px; /* Slightly rounded corners */
    }