/* Projects Page */
.thumbWrapper {
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}
.thumbLink {
	text-decoration: none;
}

.thumbnail {
	margin: 0;
	z-index: 1;
	opacity:0;
	transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    height: auto;
}
.linkWrapper{
    z-index: 2;
    position: absolute;
    margin-top:25%;
    color: var(--lightYellow);
    padding-top: 20px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out; 
    text-align: left;
    width: 25%;
    text-align: center;
}

.linkWrapper:hover{
	color: var(--hoverColor);
	background-color: hsla(235, 7%, 8%, 0.8);
}
.thumbTitle {
    font-weight: bold;
    opacity: 1;
    letter-spacing: .01em;
    font-size: 1.5em;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.thumbDesc {
    font-size: 1em;
    font-style: italic;
    letter-spacing: .07em;
    opacity: 1;
    margin-top: -15px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.projects{
	position: absolute;
	z-index: 0;
	margin-top: -115px;
	height: 100vh;
	display: flex;
	width: 100%;
}

/* MOBILE PROJECTS */
.mobileProjects{
    width: 100%;
}
.thumbWrapperMobile{
	width: 100%;
	height: 500px;
	overflow: hidden;
    display: flex;
    justify-content: center;
}

.thumbnailMobile{
	margin: 0;
    width: auto;
	z-index: 1;
    height: 100%;
}

.thumbLinkMobile{ 
    text-decoration: none;
}

.linkWrapperMobile{
	z-index: 2;
    text-align: center;
    position: absolute;
    margin-top: 225px;
}

.thumbLinkMobile{
    text-align: center;
    color: var(--lightYellow);
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
}

.thumbLinkMobile:hover{
    color: var(--hoverColor);
}

.thumbTitleMobile{
    font-weight: bold;
    font-size: 2.7em;
    letter-spacing: .1em;
}

.thumbDescMobile{
    margin-top: -20px;
    font-style: italic;
    font-size: 1.2em;
    letter-spacing: .05em;
}
