*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.fur-Navbar
{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    cursor: pointer;
}
.muFurLogo img{
    width: 50px;
    height: 50px;
}
.mainMenu
{
    display: flex;
}
.mainMenu li{
    list-style: none;
}
.mainMenu li a
{
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px;
    font-weight: 600;
    color: brown;
}
.srchBar input
{
    padding: 8px 20px;
    border-radius: 15px;
}
.srchBar button
{
    padding: 8px 20px;
    border-radius: 15px;
}
.srchBar button:hover{
    background-color: black;
    color: #fff;

}
.heroBanner img{
    width: 80%;
    margin: 0 150px;

}
.bed-detials
{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: cornsilk;
    padding: 20px;
    margin: 30px auto;
}
.bed-detials .para{

    padding: 15px;
    margin: 20px 20px;
}
.bed-detials .para p{
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
    line-height: 2;
    font-weight: 600;
    text-align: center;
}
.bed-detials .paraImage img{
    width: 500px;
    height: 500px;
}
.bed-detials .paraImage img:hover{
    transform: scale(1.03);
    transition: all 0.4s ease-in-out;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.5);
}

.heading-Text h1
{
    text-align: center;
    font-size: 45px;
    text-transform: uppercase;
    color: chocolate;
    margin: 30px auto;
}
.bedCards
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 90%;
    background-color: cadetblue;
    align-items: center;
    margin: 30px auto;
}
.bedCards .bedCard
{
    width: 300px;
    height: 350px;
    margin: 20px auto;
    border: 3px solid black;
    background-color: antiquewhite;
    cursor: pointer;
}
.bedCards .bedCard:hover
{
    transform: scale(1.08);
    transition: all 0.4s ease-in-out;
    border-radius: 30px;
}
.bedCards .bedCard img{
    width: 100%;
    height: 70%;
    padding: 10px;
}
.bedCards .bedCard p
{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: coral;
    padding-top: 20px;
}
footer
{
    background-color: brown;
    width: 100%;
    height: 200px;

}
footer h1
{
    text-align: center;
    color: yellow;
    font-size: 30px;
    font-weight: 600;
    padding: 30px;

}
footer p
{
    text-align: center;
    font-size: 20px;
    font-weight: 400;

}