/* Add property values to element with id = "hotels" */
#hotels{
    display: flex;
    width: fit-content;
}


/* Add property values to element with class = "hotels-div" */ 
.hotels-div{
    background-color: white;
    margin: 1%;
    margin-bottom: 5%;
    color: black;
    border: solid #0d6efd ;
    border-radius: 5px;
    box-shadow: 0px 1px 5px 1px grey; ;
}


/* Add property values to element with class = "address-text" */ 
.address-text{
    margin-top: 10%;
    font-style: italic;
}


/* Add property values to element with class = "hotel-address" */ 
.hotel-address{
    font-style: italic;
    color:gray  
}


/* Removes bullets from li elements */ 
li{
    list-style-type: none;
    /* text-align: center; */
}

.hotel-info{
    justify-content: center;
}