
.hotel-container {
    display: block; 
  }

  .hotel {
    margin-bottom: 1rem;
    box-shadow: 0 0 1px #33334d;
    padding: 20px;
  }
  
 
  .address {
    text-align: left;
    margin: 0;
    font-size: 1.5rem;
  }
  
  .price {
    float: right;
    color: black;
   
    padding: 0.25rem 1rem;
    font-size: 1.5rem;
    border-radius: 4px;
  }
  
  .price:after {
    content: " €";
  }
  
  .hotel-img {
    margin: 1rem 0 0;
    height: 100px;
    width: 100%;
    object-fit: cover;
  }
  
  .hotel-title {
    margin: 0 0 1.5rem;
  }
  
  .hotel-property {
    display: inline-block;
    color: #131341;
    font-weight: 700;
    width: 120px;
    margin: 0.25rem 0.75rem 0.25rem 0;
  }
  
  .hotel-map {
    margin-top: 1rem;
    width: 100%;
    height: 50px;
    box-shadow: 0 0 2px #131341;
  }

 