body {
    /* Set the background image */
    background-image: url('bkgd.jpg');

    /* Make sure the image covers the entire area */
    background-size: cover;

    /* Center the image */
    background-position: center;

    /* Prevent the image from repeating */
    background-repeat: no-repeat;

    /* Optional: Keep the background fixed when scrolling */
    background-attachment: fixed;


    font-family: calibri, Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color:#4e4e4e;
    letter-spacing:1px;
}

p {
    padding: 10px;
}

#wrapper {
    margin: 0 auto;
    width: 700px;
}

#headerwrap {
    width: 700px;
    float: left;
    margin: 0 auto;
}

#header {
    height: 270px;
    margin: 5px;
}

#banner {
    width: 670px;
    margin-top: -90px;
    border-radius: 10px;
    border: 10px solid #3f3f3f
}

#navigationwrap {
    width: 700px;
    float: left;
    margin: 0 auto;
}
#navigation {
    height: 18px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin: 5px;
    line-height:20px;
    text-align:center;
    font:11px arial;
    padding-top:5px;
    display: flex;
    justify-content: space-evenly;

}
#container {
    width: 700px;
    vertical-align: top;
    align-content: center;
}

#contentwrap {
    width: 700px;
    float: left;
    margin: 0 auto;
    align-content: center;
}

#content {
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #ebebeb;
    margin: 5px;
    padding:5px;
    align-content: center;
}

#gallery img{
    display: inline-block; /* Places images next to each other */
    width: 200px;          /* Set image width */
    margin: 5px;    /* Space between images */
    align-content: center;
    border: 5px solid #232323;
}
#gallery .port-card {
    position: relative;
    display: inline-block;
    width: 200px;
    margin: 5px;
    overflow: hidden;
    cursor: pointer;
}

#gallery .port-card img {
    width: 100%;
    display: block;
    border: 5px solid #232323;
    margin: 0;
}

#gallery .port-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    transition: background 0.3s ease;
}

#gallery .port-card:hover .port-overlay {
    background: rgba(0, 0, 0, 0.55);
}

#gallery .port-overlay h3,
#gallery .port-overlay p {
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin: 0;
}

#gallery .port-card:hover .port-overlay h3,
#gallery .port-card:hover .port-overlay p {
    opacity: 1;

}

.title {
  color:#a7a7a7;
  text-transform:uppercase;
  font-size:18px; 
  font-family:arial, calibri;
  letter-spacing:2px;
  padding-left:20px;
  border-bottom:1px solid #585858;
  border-left:0px solid #bf4465;
  margin:10px;}
  
  h1 {text-align:center;font:26px georgia;font-style:italic;color:#777;}
  
  
  
    ::-webkit-scrollbar-thumb {
background-color: transparent;  
border-radius: 0px;
border:1px solid #999;
}
::-webkit-scrollbar {
width: 7px; height: 4px; 
background: transparent;
}



a:link, a:visited, a:active {
color:#898989;text-decoration:none;}
a:hover {
color:#000000;}
