body {
	font-family: Montserrat, sans-seriff;
}

h1 {
	text-align: center;
}


html {
    box-sizing: border-box;
}

#welcome {
	height: 100px;
    text-align: center;
}

.contact {
    color: black;
    text-decoration: none;
    padding: 5px;
}

.contact:hover {
    color: rgb(64, 64, 64);
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

.masonry {
    margin: 0 auto;
    max-width: 85vw;
    transition: all .5s ease-in-out;
    column-gap: 15px;
    column-fill: initial;
}

.masonry .brick {
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: top;
}

.masonry .brick img {
    cursor: pointer;
    max-width: 100%;
    transition: all .5s ease-in-out;
    backface-visibility: hidden;
}

.masonry .brick:hover img {
    opacity: .75;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .masonry {
        column-count: 2;
    }
}

@media only screen and (min-width: 1024px) {
    .masonry {
        column-count: 3;
    }
}


.modal {
    box-sizing: border-box;
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(5px);
    padding: 0;
    width: 100%;
    height: 100%;
}

.modal-content {
    animation-name: fadeIn;
    animation-duration: 0.4s;
}

.close {
    text-decoration: none;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 25px;
    font-size: 35px;
    color: black;
    font-weight: bold;
    transition: 0.6s ease;
}

.close:hover,
.close:focus {
    color: rgb(64, 64, 64);
}

.mySlides {
    display: none;
    background-color: rgba(0, 0, 0, 0);
}

.prev,
.next {
    text-decoration: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: black;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

.mySlides img {
    margin: 0 auto;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    animation-name: fadeIn;
    animation-timing-function: ease-in;
    animation-duration: 0.4s;
}

@keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}

.prev:hover,
.next:hover {
    color: rgb(64, 64, 64);
}
