*{
    margin:0;padding:0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;

}
.box-container{
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-wrap: wrap;
}

.box{
    flex: 1 1 300px;
    border: 1px solid rgba(0, 0, 0, .3);
    position: relative;
    overflow: hidden;
    margin:20px;
}

.box .image{
    padding: 10px;
    margin: 10px;
    text-align: center;
    background: #eee;
}

.box .image img{
    height: 200px;
    width: 250px;
    object-fit: cover;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.7));

}

.box .image .title{
    font-size:20px;
    color:#666;
    padding:10px;    
}

.box .image .subInfo{
    display: flex;  
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;
}

.box .image .subInfo .who{
    display: flex;  
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;
}

.box .overlay{
    position: absolute;
    top:0; left:0;
    height: 100%;
    width:100%;
    /* background: rgba(0,0,0,.3); */
    display:flex;
    align-items: center;
    justify-content: center;
    transition: none;

}
.box .overlay:hover{
    background: rgba(0,0,0,.3);
}

.box .overlay a{
    color:#666;
    background: #fff;
    padding: 13px 15px;
    margin: 10px;
    font-size: 25px;
    transform: translateY(-500px);
    transition-property: transform;
    transition-delay: calc(0.04 s * var(--i));
}

.box .overlay div{
    transform: translateY(-500px);
}

.box .overlay a:hover{
    color:red;
}

.box:hover .overlay a,.box:hover .overlay div{ 
    transform: translateY(0px);
}

.box .overlay .menuoverlay{
    text-align: center;
}

.menuoverlay a:hover{
    text-decoration: none;
}

.box .overlay span{
    color: black;
    font-size: 2rem;
    font-weight: bold;
    background-color: #198f00;
}

.box .info{
    margin: 10px;
}

.box .info .subInfo{
    display:flex;
    justify-content: space-between;
}

.box .info .subInfo .who{
    font-size: 25px;
}
.box .info .subInfo .participant{
    
}

.box .info .infoDetails{
    border-top: solid 1px black;
}

.taken {
    background-color:#9e9e9e;
}
.free{
    background-color: #ceffce;
}

div.info{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.filter-line{
    text-align: center;
}