/* Header */
.headerwrapper{
    margin-left: 2%;
    margin-right: 2%;
}

.headercontent {
    background-color:rgb(152, 209, 219);
    background-image: url("../img/bkg-headfoot.jpg");
    color:rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border:5px solid rgb(111, 177, 221);
    margin-top: 25px;
    margin-bottom: 25px;
    max-width: 420px;
    padding: 10px;
    font-size: 34px;
    font-family: "Comic Sans MS";
}

/* Core Body Styling */
body {
    background-image: url("../img/bkg-body.gif");
}


/* Navigation Bar */
.navwrapper {
    
    margin: 0;
    padding: 0;
    width: 120px;
    position: fixed;
}

.navcontent {
    background-color:rgb(152, 209, 219);
    background-image: url("../img/bkg-navlist.jpg");
    min-height: 320px;
}

.navcontent ul {
    list-style-type: none;
    margin: 0;
    padding: 5px;
    border: 2px solid rgb(111, 177, 221);
}

.navcontent li {
    text-align: center;
    border: 2px solid rgb(52, 75, 94);
    background-color: rgb(172, 205, 211);
    margin-bottom: 5px;
    font-size: 18px;
}

.navcontent li a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 2px;
    border: 2px solid rgb(27, 46, 61);
    background-color: rgb(144, 193, 202);
    background-image: url("../img/bkg-button.gif");
}
.navcontent li a:hover {
    display: block;
    color: #315761;
    text-decoration: none;
    border: 2px solid rgb(108, 160, 202);
    background-color: rgb(29, 64, 71);
}

/* Main Body Content Divs */
.bodywrapper-outer  {
    margin-left: auto;
    margin-right: auto;
    max-width: 1270px;
    justify-content: center;
    align-items: center;
    font-family: "Comic Sans MS";
    min-height: 350px;
}

.bodywrapper-inner {
    margin-left: 5%;
    margin-right: 5%;
}
.bodycontent {
    margin-left: 130px;
    padding: 15px;
    background-color:rgb(152, 209, 219);
    border:2px solid rgb(111, 177, 221);
    background-image: url("../img/bkg-content.gif");
    font-size: 19px;
}

.bodycontent-unstyled {
    margin-left: 130px;
    padding: 15px;
    font-size: 19px;
}

/* Footer */
.footer {
    position: sticky;
    float: none;
    margin-left: 130px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.footercontent {
    background-color:rgb(152, 209, 219);
    background-image: url("../img/bkg-headfoot.jpg");
    color:rgb(17, 82, 102);
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border:5px solid rgb(111, 177, 221);
    max-width: 280px;
    padding: 10px;
}

.guestbook {
    width: 100%;
    height: 720px;
    margin-bottom: 10px;
}

.streamembed {
    aspect-ratio: 16/9;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
  }

.gallery-column-image {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1/1;
}

.gallery-column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-column-video {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 16/9;
}

.gallery-column-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-column-text {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}



.gallery-row::after {
    content: "";
    clear: both;
    display: table;
}