#results-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade 2s;
    padding: 20px 0;
}

#result-card {
    margin: 10px 10px;
    width: 580px;
    height: 300px;
    background-color: #ffffff;
    border: 2px solid #d3dfe2;
    transition: box-shadow 0.3s ease-in-out;
}

#result-card:hover {
    box-shadow: 0 0 7px rgba(0,0,0,0.3);
}

#result-card-image {
    width: 100%;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

#result-card-h2 {
    background-color: #ffffff;
    display: inline-block;
    padding: 5px 15px;
    margin: 15px 0 0 0;
}

#result-card-bottom {
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

#result-information {
    position: relative;
    bottom: 1px;
}

.no-result {
    height: calc(100vh - 260px);
    position: relative;
    top: 20px;
    color: #b2b2b2;
    font-weight: 700;
    font-style: italic;
    font-size: 1.5em;
}