#search-bar{
    margin-left: 35%;
    width: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#search-bar > #search-input{
    width: 400px;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
}

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

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

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

.search-specifics{
    width: 70%;
    margin-left: 15%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.search-specifics > div{
    text-align: center;
}

input[type=radio]{
    border: 0;
    height: 20px;
    width: 20px;
}

div > label{
    font-size: 18px;
}

div > label:first-child{
    font-weight: bold;
}

#project-list-intro{
    text-decoration: underline;
    font-family: "Bebas Neue", sans-serif;
    font-size: 50px;
    text-align: center;
}

.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;
}