body {
  font-family: 'Montserrat', sans-serif;
    font-weight: 400;
   width:414px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    
}

.header {
    display: flex; 
    align-items: center; 
    justify-content: center;
    width: 370px; 
    padding: 10px; 
    margin-left: -10px;
   
}

.header p {
    margin-left: 12px;
    font-size:13px;
}

#searchBox {
    padding: 10px;
    width: 180px;
    height: 8px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: none;
    outline: none;
    background-color: #f0f0f0;
    margin-left: 10px;
}
  
  #searchBox::placeholder {
    color: #aaa;
       font-family: 'Font Awesome 5 Free','Montserrat, sans-serif';
  
  }

  .search-input {
    font-family: 'Font Awesome 5 Free','Montserrat, sans-serif';
    font-weight: 700;
  }

  .image-container {
    width: 350px;
    display: flex;
    justify-content: space-around; 
    margin-left:25px; 
      font-weight:normal;
    font-size:13px;
}

.image-container p{
    margin-right:20px;

}


.image-with-text a {
    text-decoration: none; 
    color: black;
}


.image-with-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-with-text img {
    width: 90px; 
    height: 90px; 
    object-fit: cover; 
    margin: 0 5px; 
}

.image-with-text p {
    margin-top: 5px; 
    text-align: center; 
    font-weight: 400; 
    font-size:13px;
}

.image-container2 {
    display: flex;
    justify-content: space-around; 
    align-items: center; 
    margin-left:10px;
    margin-right:10px;
    
}

.image-with-text2 {
    position: relative;
    text-align: center;
  padding: 5px;
  margin-top: 15px;
}

.image-overlay2 {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.image-overlay2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.image-overlay2 img {
    width: 160px; 
    height: auto; /* Maintain aspect ratio */
    z-index: 2; /* Ensure it's above the pseudo-element */
}

.overlay-text2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 3; /* Place it above the pseudo-element */
}

.overlay-text2 p {
    margin: 0;
    padding: 10px;
    color: black; 
}

.building-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: -30px;
    width: 340px;
}

.building-info {
    display: flex;
    align-items: center;
}

.building-image img {
    width: 200px; 
    height: auto; 
    margin-right: 10px; 
}

.text-info {
    flex-grow: 1; 
    font-size:13px;
    font-weight:normal;
    width:100px;
}

.text-info p{
    background-color:#FFDEAD ;
    border-radius: 20px;
    padding: 1px;
    font-size: 10px;
    text-align: center;
    width: 100px;
}
.text-info h3{
 font-weight:400;
    
}



.price-info img {
    width: 50px; 
    height: auto; 
   
}

.price-info p {
    margin-top: 80px;
    font-weight:400;
    font-size:13px;
}

.price-info p span {
    display: block; 
    margin:-10px;
    font-size:13px;
     
}


.price-info {
    display: flex;
    flex-direction: column;
    align-items: center;
     margin-right:45px;
    
}

.learn-more-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: black;
    border-radius: 20px;
    border: 2px solid #FFBF00;
    font-size: 10px;
     font-weight:normal;
    width: 80px;
    height: 15px;
    margin-top: -12px;
}

.footer-nav{
    width: 370px;
    font-size: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 5px solid #FFAA33; 
    margin-top: -10px;
    padding: 15px;
    

  }
  .footer-nav a {
    text-decoration: none;
    color: grey; 
   
  }