body{
    background-color: #151529;
    color: #f5efff;
    font-family: "Open Sans", sans-serif;
}

#project-list-intro{
    text-decoration: underline;
    font-family: "Bebas Neue", sans-serif;
    font-size: 50px;
    text-align: center;
    grid-area: 2 / 1 / 2 / 6;
    margin-top:150px;
}


#submit-button{
    background-color: transparent;
    width: 50px;
    height: 50px;
    border: none;
    margin-left: 20px;
}

#technique-button{
    padding:14px;
    font-weight: bold;
    font-size: 20px;
    font-family: "EB Garamond", sans-serif;
    border-radius: 10px 0px;
    background-color: #f5efff;
    box-shadow: 2px 2px 4px black;
}

#technique-button:hover{
    background-color: grey;
    color: #f5efff;
    transition: 0.5s;
}

#submit-button > img{
    filter: invert(1);
    width:50px;
}

#submit-button:hover > img{
    filter: invert(0.3);
    transition: 0.5s;
}

.grid_container{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, auto);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.technique_search_container{
    grid-area: 1 / 1 / 3 / 6; 
    margin-top: 10px
}

.search_buttons{
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.project-list-container{
    grid-area: 3 / 1 / 6 / 6;
    width: 80%;
    margin-left: 10%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 80px;
}

.select_button{
    display: flex;
    cursor:pointer;
}

.techniques_items {
    -moz-column-count: 4;
    -moz-column-gap: 1em;
    -webkit-column-count: 4;
    -webkit-column-gap: 1em;
    column-count: 4;
    column-gap: 1em;
    font-size: 80%;
    margin-left: 10%;
    list-style: none;
}

.project-list-container{
    width: 80%;
    margin-left: 10%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 80px;
}

.project-list-container > a > .project-container{
    position: relative;
    height: 25.5vh;
    width: 23.25vw;
    width: 23.25vw;
    box-shadow: 25px 0px 30px black;
}

a > .project-container > img{
    height: 25.5vh;
    width: 23.25vw;
    position: absolute;
    object-fit: cover;
}

a > .project-container:hover > img{
    filter:brightness(20%) 
}

.project-text-container{
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 25.5vh;
    width: 23.25vw;
    opacity: 0;
}

.project-text-container > h4{
    font-size: 1.4vw;
    color: white;
    text-align: center;
    font-family: 'Dela Gothic One', sans-serif;
    text-decoration: none;
    text-shadow: 2px 2px 4px black;
}

.project-text-container > p{
    font-size: 1vw;
    text-align: center;
    font-style: italic;
    font-family: 'EB Garamond';
    color:white;
}

.project-container:hover > .project-text-container{
    opacity: 1;
    transition: 0.5s;
}

.project-container > .project-text-container > h4:hover{
    color: blue;
    transition: 0.2s;
}

.project_container > img{
    height: 230px;
    width: 400px;
    position: absolute;
    object-fit: cover;
}

.project_container:hover > img{
    filter:brightness(20%) 
}

.project_text_container{
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 230px;
    width: 400px;
    opacity: 0;
}

.project_text_container > a{
    font-size: 28px;
    color: white;
    text-align: center;
    font-family: 'Dela Gothic One', sans-serif;
    text-decoration: none;
    text-shadow: 2px 2px 4px black;
}

.project_text_container > p{
    font-size: 24px;
    text-align: center;
    font-style: italic;
    font-family: 'EB Garamond';
}

.project_container:hover > .project_text_container{
    opacity: 1;
    transition: 0.5s;
}

.project_container > .project_text_container > a:hover{
    color: blue;
    transition: 0.2s;
}

.custom_button_container{
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom_button_container input{
    position: absolute;
    opacity: 0;
}

.checkmark{
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

.custom_button_container:hover input ~ .checkmark {
    background-color: #ccc;
}

.custom_button_container:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkmark:after{
    content: "";
    position: absolute;
    display: none;
}

.custom_button_container input:checked ~ .checkmark:after {
    display: block;
}

.custom_button_container .checkmark:after {
    top: 20%;
	left: 20%;
	width: 60%;
	height: 60%;
	border-radius: 50%;
	background: #151529;
}

#search_button{
    border: none;
    margin-left: 20px;
}

#search_img {
    filter: invert(1);
    width: 50px;
    height: 50px;
    background-color: transparent;
}

#search_button:hover > img{
    filter: invert(0.3);
    transition: 0.5s;
}