#imoveis h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 82px;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}


.property-card {
    position: relative;
    margin: 0;
    padding: 0.5rem;
    overflow: hidden;
}

.property-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:0;
    color: inherit;
    width: auto;
    height: 300px;
    background-size: cover;
    background-position: center;
}



.overlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    opacity: 0;
    transition: background-color 0.3s, opacity 0.3s;
    margin: 0.5rem;
    box-sizing: border-box;
    padding: 0;
}

.property-card:hover .overlayer {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.property-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);

}
.property-text{
    color: white;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);

}
.logo-overlayer{
    height: 50px;
}

.view-overlayer
{
    display: none;

}

.property-card:hover .view-overlayer
{
    display: inline-block;
}
.property-card:hover .no-over {
    display: none;
}
