* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ddd;
}

.propertyListingContainer {
    display: flexbox;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 2em;
    margin-bottom: 3em;
}

.propertyListingContainer-h2 {
    text-align: center;
    font-size: 1.4em;
    font-weight: 500;
    font-family: inherit;
    color: rgba(1, 1, 14, 0.979);
    margin-bottom: 1.2em;
}

.property {
    border: 0;
    border-radius: 1em;
    box-shadow: 0px 0px 0px  darkgoldenrod;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 20px auto;
    width: 23.3%;
    height: auto;
    display: inline-block;
    margin: 10px;
    background-color: #ccc;
    flex-direction: column;
}

.property-a {
    text-decoration: none !important;
    cursor: pointer;
}

.property-img {
    width: 100%;
    height: auto;
    border: 0;
    border-top-right-radius: 1em;
    border-top-left-radius: 1em;
}

.Status {
    color: #fff;
    font-size: .7em;
    font-weight: 300;
    font-family: inherit;
    text-align: left;
    background-color: #005bbd;
    border-radius: .6em;
    padding: .1rem;
    margin: 1em;
}

.active {
    font-size: 2.5em;
    font-weight: bold;
    color: rgb(4, 88, 4);
    margin: 0;
}

.address {
    font-size: 12px;
    font-weight: 400;
    font-family: inherit;
    color: rgba(3, 3, 46, 0.925);
    margin: 0;
    margin-top: 2em;
}

.label {
    font-size: 13px;
    font-weight: bold;
    color: #000;
    margin-bottom: 1.2em;
    margin: 10px;
}

.labelValue {
    font-size: .8em;
    font-weight: 400;
    color: #10151a;
}

.property .price {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}
  
.property .address {
    font-size: 16px;
    margin-bottom: 10px;
    margin: 10px;
}
  
.property .details {
    margin-bottom: 10px;
}
  
.property .details .label {
    font-weight: bold;
}

@media screen and (max-width: 800px) {
    .property {
        flex-direction: column;
        width: 95%;
        box-shadow:  0 0 1px #005bbd;
    }
}