body {
    font-family: input-mono, monospace;
    font-weight: 300;
    color: #323335;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.navbar {
    height: 20px;
    display: flex;
    padding: 30px;
    justify-content: space-between;
}

.nav-link {
    color: #323335;
    text-decoration: none;
    font-style: italic;
}

.nav-link-2 {
    color: #323335;
    text-decoration: none;
    font-style: italic;
	font-size: 12px;
}

.nav-link:hover {
    color: #323335;
    text-decoration: none;
    font-style: italic;
}

.intro {
    width: 100%;
    max-width: 730px;
    margin: 0 auto;
    padding: 20px 0;
    text-align:center;
    text-decoration: none;
    color: black;
	font-size: 20px;
}

.text {
    width: 100%;
    max-width: 730px;
    margin: 0 auto;
    padding: 20px 0;
    text-align:left;
}

.link a:link, .link a:visited {
    color: #323335;
    text-decoration: underline;
}

.link a:hover, .link a:active {
    color: #323335;
    text-decoration: none;
}


/* Template 9: galery and lightbox */
.galery {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 0;
}

.lb-content {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.lb-item {
    padding: 10px;
    height: 330px;
    transition: transform .2s;
}

.lb-item:hover {
    transform: scale(1.05); /* (110% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.lb-item img {
    height: 100%;
    object-fit: cover;
}

/* The Modal (background) */
.lb-modal {
    display: none;
    position: fixed;
    z-index: 100;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

/* Modal Content */
.lb-modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    max-width: calc(100vw - 200px);
    max-height: calc(100vh - 130px);
}

/* The Close Button */
.lb-close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.lb-close:hover,
.lb-close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.lb-slide-element {
    display: none;
}

.lb-slide-element > img {
    width: 100%;
    height: 100%;
    max-width: calc(100vw - 200px);
    max-height: calc(100vh - 130px);
    object-fit: contain;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white !important;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 100;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a light background color */
.prev:hover,
.next:hover {
    color: lightgray;
    background-color: gray;
}

/* Number text (1/3 etc) */
.lb-counter {
    color: white;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 10px;
    left: 10px;
}

/* Prevent displaying a white line under the sliderimage */
img {
    margin-bottom: -4px;
}

.lb-caption-container {
    position: absolute;
    padding: 8px 0px;
    margin: 0 auto;
    top: 10px;
    width: 100%;
    height: 30px;
    text-align: center;
    color: white;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.footer {
    height: 75px;
    display: flex;
    flex-grow: 0;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

/* styles for mobile */
@media only screen and (max-width: 599px) {
    .t3txt {
        position: absolute;
        width: 300px;
        height: 300px;
        line-height: 300px;
    }

    .t4txt {
        left: 20px;
        bottom: 70px;
    }

    .t7 {
        padding: 0;
    }

    .t7img {
        object-fit:cover;
        width: 100%;
        height: auto;
        overflow:hidden;
    }

    .t8img {
        object-fit:cover;
        width: 100%;
        height: auto;
        overflow:hidden;
    }

    .column {
        padding: 10px;
    }

    /* Modal Content */
    .lb-modal-content {
        position: relative;
        margin: auto;
        padding: 0;
        max-width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
    }

    .lb-slide-element > img {
        width: 100%;
        height: 100%;
        max-width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
        object-fit: contain;
    }

    /* Next & previous buttons */
    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 80%;
        z-index: 100;
    }

    .hinLES button[data-testid="uc-privacy-button"]
    {
        display: none;
    }
}