* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

hr {
    border-top: 1px solid black;
    margin: 8px;
}

html{
    background-color:slategray;
}

body {
    font-family: "Open Sans", Arial, sans-serif;
    min-height: 100vh;
    color: #262626;
    padding-bottom: 3rem;
    background-image: url(images/background.png);
    background-repeat: repeat;
}

:visited {
    color: black;
}

:link {
    text-decoration: none;
    color: black;
}

img.social-icon {
    width: 50px;
 }

div.banner-container {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    justify-content: center;
    margin: 0 0 10px 0;
    height: 100px;
}

div.banner-div {
    width: 100%;
    position: relative;
    padding: 0;
    overflow: hidden;
    border-bottom: #333333 solid 1px;
}

.banner-div #banner-text
{
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 3rem;
    font-weight: 600;
}


#banner-image {
    display: block;
    width: 100%;
    object-fit: cover;
}


#banner-text {
    color: #fff;
    display: none;
}

header {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 2rem;
    justify-content: center;
    padding: 0 3rem 0 3rem;
}

header > div {
    display:flex;
    font-size: 2rem;
    margin-bottom: 4px;
    border: black 1px solid;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
    background-color:#9F97D8;
}

header > div img {
    margin-right: 8px;
    vertical-align: middle;
}

.gallery {
    display: grid;
    padding: 1rem 3rem;
    grid-template-columns: repeat(auto-fit, 22rem);
    grid-gap: 2rem;
    justify-content: center;
}

.gallery img {
    display: block;
    width: 100%;
}

.gallery-item {
    max-width: 500px;
    position: relative;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    border: #333333 solid 3px;
    border-radius: 4px;
}

.gallery-item .gallery-item-label
{
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 2rem;
    font-weight: 600;
}

.gallery-item-label {
    color: #fff;
    display: none;
}

div.section-header {
    font-weight: bold;
    text-align: center;
    font-size: 2em;
    margin-top: 16px;
}