/* General Styles */

* {
  user-select: none;
  -webkit-user-select: none;
}

/* Anasayfa'daki Bölüm */

.main {
  background: url(/uploads/static/main_photo.jpg);
  background-position: center;
  background-size: cover;
  height: 500px; 
  position: relative;
}

.main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.main-description {
  z-index: 2;
}

.property-description {
  white-space: pre-line;
}

@media (max-width: 768px) {
  .main {
    height: 300px;
  }
}
