/* ------- Main styles for details ------- */

main.flats{
    font-size: 1.6vw;
}

/* Undeline of apartments heading */
.borderWidth{
    width: 200px;
    height: 1px;
}

/* Center the text */
.center{
    margin-top: 15px;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 25px;
}

/* Parents container for the items */
.parentsDetails{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    margin: 20px 0px;
}

.itemDetails{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: auto;
    text-align: center;
    max-width: 100%;
}


/* Distance from the text in the items */
.itemTextDetails{
    padding: 30px 0px;
}

/* Hide the text in the item.*/
.desc{
    text-align: center;
    font-weight: normal;
    visibility:hidden;
    min-height: 100px;
}

/* Show the hidden text by using the mouse */
.img:hover .desc{
    visibility:visible;
    transition: 1s;
}

/* Styles for the image container */
div.img{
    padding: 5px;
    background:#f1f1f1;
    text-align: center;
    border-radius: 5px;
}
