body a {
    text-decoration: none;
}
.thumb {
    display: inline;
    height: 15vw;
	width: 15vw;
	object-fit: cover;
}

.qw {
	display: inline-grid;
}

.desc {
	color: black;
    text-decoration: none;
	background-color: 	rgba(205,226,255,0.7);
	font-style: italic;
	font-weight: bold;
	margin-top: -18px;
	margin-left: auto;
	margin-right:auto;
	margin-bottom: 5px;
	padding-left:7px;
	padding-right:7px;
	text-align: center;
	align-items: center;
	font-size: 12px;
	border-radius: 0 0 8px;
	width: 15vw;
	max-height: 18px;
}


#thumblist {
    text-align: center;
    border-radius: 8px;
    padding: 0;
}

#thumblist img {
    border-radius: 8px;
}


	
.description {
    color: black;
    text-decoration: none;
	background-color: 	rgba(205,226,255,0.6);
	font-style: italic;
	font-weight: bold;
	margin-top: 5px;
	margin-left: auto;
	margin-right:auto;
	padding-left:7px;
	padding-right:7px;
	text-align: center;
	align-items: center;
	font-size: 18px;
	border-radius: 8px;
	width: -webkit-fit-content;
	height: -webkit-fit-content;
	width: -moz-fit-content;
	height: -moz-fit-content;
}


/** relevant CSS Below **/

.lightbox {
    display: none; /**sets the default display to hide the lightbox until it's the :target**/
    position: fixed; /**the rest of this styling makes the lightbox full screen when selected**/
    z-index: 500;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.8);
	margin: 0px;
}
.lightbox img { /**sets the styling of the image in the lightbox**/
    max-width: 80%;
    max-height: 80%;
    text-align: center;
    margin-top: 2%;
}

.lightbox:target { /**this is where the magic happens. makes the lightbox display when it's the target of a clickable link**/
    outline: none;
    display: block;
	
}
.previous { /**styling the left arrow**/
    position: fixed;
    left: 14px;
    top: 40%;
    width: 40px;
	z-index:100;
}
.exit { /**styling the exit button**/
    position: fixed;
    top: 4px;
    right: 14px;
    width: 40px;
	z-index:100;
}
.next { /**styling the right arrow**/
    position: fixed;
    right: 14px;
    top: 40%;
    width: 40px;
	z-index:100;
}



@media (max-width: 1000px){

.description {
	font-size: 3vw;
}

.thumb {
    display: inline;
    height: 30vw;
	width: 30vw;
	object-fit: cover;
}

.desc {
	width: 30vw;
	font-size: 16px;
	max-height: 22px;
	margin-top: -22px;
}
.lightbox img {
	margin-top: 20%;
}

}

