.header {
    font-size: 2rem;
    text-align: center;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

#places {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.place_cards {
    width: 250px;
    margin: 1rem;
    height: 150px;
    
    text-decoration: none;
    overflow: hidden;
}

.place_cards img {
    width: 250px;
    height: 150px;
    opacity: 100%;
    transition: 0.2s linear;
    filter: blur(1px);
    
}

.cards_text {
    position: relative;
    text-align: center;
    top: -40%;
    font-size: 2.2rem;
    margin: 0px;
    padding: 8px;
    pointer-events: none;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: rgb(240, 239, 239);
    background: linear-gradient(rgba(255, 255, 255, 0),rgba(0, 0, 0, 0.8));
    /* border: 1.5px solid #f1f1f1;
    border-style: solid none solid none;  */
} 

#places a img:hover {
    opacity: 100%;
    transform: scale(1.1);
    transition: 0.3s linear;
    filter: blur(0px);
}

#places a {
    text-decoration: none;
}

.place_cards label {
    padding: 0 0.5rem 0 0.5rem;
    margin: 0;
    font-size: xx-large;
    position: absolute;
    z-index: 1;
    background-color: white;
    border-radius: 0 0 0.5rem 0;
    border-right-style: solid;
    border-bottom-style: solid;
    border-width: 1.5px;

}