body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fef2e2;
    color: #333;
}

.container {
    text-align: center;
    padding: 20px;
}

.logo {
    width: 150px;
    margin: 20px 0;
}

header h1 {
    font-size: 2em;
    margin: 10px 0;
}

header p {
    font-size: 1.2em;
    color: #666;
}

.properties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.property {
    background-color: #fafaf4;
    margin: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.property:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.property img {
    width: 100%;
    border-radius: 8px;
}

.property h2 {
    margin-top: 15px;
    font-size: 1.5em;
}

.property p {
    color: #666;
    margin-top: 10px;
}

.image-overlay {
    position: relative;
    width: 100%;
}

.image-overlay img {
    border-radius: 8px;
    transition: transform 0.3s;
}

.image-overlay:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.image-overlay:hover .overlay {
    opacity: 1;
}

.text {
    color: white;
    font-size: 1.5em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

footer {
    margin-top: 30px;
    color: #999;
}

footer a {
    color: #333;
    text-decoration: none;
}

a {
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Removes any default link color by inheriting the color of the parent element */
   
}

a:visited,
a:hover,
a:focus,
a:active {
    text-decoration: none; /* Removes underline on visited, hover, focus, and active states */
    color: inherit; /* Keeps no color change in all states */
}

@media (max-width: 768px) {
    .properties {
        flex-direction: column;
    }

    .property {
        width: 80%;
    }
}
