*{
    margin: 0px;
    padding: 0px;
}
body{
    color: #f8f5f4 ;
}
#HTL{
    margin-right: 10px;
}
#h6{
    color: black;
}
#popup{
    display: flex;
    justify-content: space-between;
}
#popup>div>p{
    margin-left: 5px;
}
#popup>div>#h6{
    border: 1px solid red;
    margin-right: 10px;
    color: #0d7066;
    font-size: 20px;
}
.book{
    width: 100px;
    height: 28px;
    background-color: #0d7066;
    color: white;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.book:hover{
    cursor: pointer;
    background-color: #0f7b71;
    font-size: 13px;
}
.book{
    float:right
}
#container{
    border: 0px solid red;
    width: 80%;
    height: auto;
    margin: auto;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
}
#features{
    border: 0px solid pink;
    width: 20%;
}
h3{
    color: #141D38;
    font-size: 17px;
    font-weight: bold;
}
h4{
    margin: 20px 0px 10px;
    color: #141D38;
    font-size: 15px;
    font-weight: bold;
}
.popular_filters{
    border: 0px solid green;
   
    display: flex;
    gap: 10px;
}
.popular_filters>div>input,p{
    margin-top: 10px;
    color: #343B53;
    font-weight: 400;
    font-size: 14px;
}
.fa-star{
    font-size: 10px;
    margin-left: -5px;
}
.ratings{
    display: flex;
    gap: 10px;
    align-items: center;
    color: black;
    margin-top: 10px;
}
.ratings>div{
    height: 25px;
    width: 25px;
    font-size: 17px;
    border: 0px solid grey;
    border-radius: 5px;
    padding: 2px;
}
#see{
    width: 30%;
    margin-left: 50px;
    font-size: 15px;
    color: blue;
    border: 0px solid red;
}
#see:hover{
    cursor: pointer;
    text-decoration: underline;
}
#rooms{
    border: 0px solid red;
    height: auto;
    width: 65%;
    
}
.hotels{
    display:flex;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.hotels>div>h2{
    color: black;
    margin-left: 5px;
}
.hotels>div>h5{
    color: black;
    margin:15px 0px 0px 5px;
}
.image{
    border: 0px solid violet;
    width: 35%;
}
.image>img{
    width: 100%;
    height: 100%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.details{
    width: 65%;
    text-align: start;
    border: 0px solid grey;
}
.details>p{
    width: 80%;
    margin-left: 5px;
    font-weight: bold;
}
.price{
    text-align: end;
    color: black;
    margin: -30px 10px 5px 0px;
}
#price_div{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    color: black;
}
#sortingPrice{
    display: flex;
}
.banner{
    border: 0px solid green;
    height: 400px;
    width: 10%;
    margin-bottom:100px;
}
.banner>img{
    height: 100%;
    width: 100%;
    margin-top: 50px;
}
#footer{
    margin-top: 30px;
  }

/* medium screen */
@media (min-width: 351px) and (max-width: 600px) {
    .hotels{
        flex-direction: column;
    }
    .image{

        width: 100%;
    }
    .details{
        width: 100%;
        text-align: start;
        border: 0px solid grey;
    }
    .ratings{
        flex-direction: column;
    }
    #sortingPrice{
        flex-direction: column;
        gap: 5px;
    }
  }
 