body{
    background-color: var(--background-color);
    color: var(--text-color);
}

main ul {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 50px;
}

main ul li:nth-child(1) {
    margin-left: 0;
    padding-left: 0;
}

main li > a {
    font-size: 16px;
    color: var(--link-color);
    -webkit-transition: font-size 0.6s, color 0.6s;
    -moz-transition: font-size 0.6s, color 0.6s;
    -o-transition: font-size 0.6s, color 0.6s;
    transition: font-size 0.6s, color 0.6s;
}

main li > a:hover {
    font-size: 17px;
    color: var(--link-color-hover);
}

main #title {
    margin-bottom: 0;
}

main #subtitle {
    margin-top: 0;
}

img {
 max-width: 1000px;
}

#images {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

#images > img {
    flex: 0 1 33%;
    height: auto;
    width: 100%;
}

article h1 {
    font-size: 30px;
}

article h2 {
    font-size: 20px;
}

article p {
    font-size: 18px;
    line-height: 32px;
}

.imgRow > .column {
    padding: 0 8px;
}

.imgRow:after {
    content: "";
    display: table;
    clear: both;
}


.imgColumn {
    float: left;
    width: 25%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}


.modal-content {
    position: relative;
    background-color: black;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
}


.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

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


.mySlides {
    display: none;
    background-color: black;
}


.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
}


.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


.caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;

}

img.thumb {
    opacity: 0.6;
    width: 250px;
    margin: 20px;
}

.active,
.thumb:hover {
    opacity: 1;
}

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


.mySlides > img {
    display: block;
    margin: auto;
}

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