body {
    margin: 0px;
    padding: 0px;
}

.projectsFiltersMenu{
	position: relative;
	top: 26vh;
	display: flex;
	justify-content: center;
	margin: auto;
	width: 90vw;
    animation: appearfb 2.2s ease 0s 1 both;
}
@keyframes appearfb {
    0%   {opacity: 0;}
    100% {opacity: 1;}
}


.projectFilter{
	font-family: PlexSans;
    font-size: 2vh;
	padding-left: 4vw;
	padding-right: 4vw;
	padding-bottom: 4vw;
    text-align: center;
}

.projectFilter:hover{
	cursor: pointer;
}

.projectThumbs{
	display: flex;
    visibility: "hidden";
	position: relative;
	top: 27vh;
	-webkit-justify-content: space-around;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
}

.thumb{
    position: relative;
    overflow: hidden;
    background: rgba(200,200,200,0.7);
    opacity: 0;
}
@media (max-width: 649px) {
    .thumb{
        width: 50%;
        height: 30vw;
    }
}
@media (min-width: 650px) {
    .thumb{
        width: 33.3%;
        height: 20vw;
    }
}


.thumb:hover{
    cursor: pointer;
}
.thumb:hover img{
    transform: scale(1.2);
}

.thumb img{
    width: 100%;
	height: 100%;
    transition: all 2s;
}

.thumb p{
	position: absolute;
    right: 25px;
    bottom: 10px;
    padding: 4px 2px 2px 2px;
    border-radius: 15px;
    background: rgba(255,255,255,0.6);
	font-family: PlexSans;
    z-index: 4;
}

.already-visible {
    animation: opcome 1.2s backwards;
    opacity: 1;
}

.moved {
    transform: translateY(120px);
}

.come-in {
    animation: come-in 1.8s ease-in 1 backwards;
    opacity: 1;
}

@keyframes come-in {
      0% {transform: translateY(120px); opacity: 0;}
     80% {transform: translateY(0px); opacity: 0.4;}
    100% {transform: translateY(0px); opacity: 1;}
}

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

.chrono{
    position: relative;
    top: 25vh;
    left: 6vw;
    width: 88vw;
    display: none;
    grid-template-areas: 'year job kind surface status'
                         'year job kind surface status';
    grid-row-gap: 2.2vh;
    grid-column-gap: 1.5vh;
    padding-bottom: 100px;
    font-size: 1.6vh;
    font-family: PlexSans;
    text-align: left;
}

