@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;800&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: "Poppins", sans-serif; 
}
.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;

}
.heroSection
{
    background: url("../images/backGrounImag.jpg");
    background-position: center;
    width: 100%;
    height: 90vh;
    background-repeat: no-repeat;
    background-size: cover;
}
.heroSection h1
{
    font-family:cursive;
    font-size: 80px;
    text-align: center;
    padding-top: 50px;
}
.heroSection span
{
    color: maroon;
}
.heroSection p
{
    width: 40%;
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 1.9;
    text-transform: capitalize;
    padding: 60px 120px;
    
}

.paraAbout
{
    background-color: burlywood;
    width: 85%;
    margin: 30px auto;
    padding: 25px;
}
.paraAbout h1
{
    text-align: center;
    color: chocolate;
    font-size: 50px;
    font-family: 'Times New Roman', Times, serif;
    text-transform: uppercase;
    text-shadow: 3px 3px 4px rgba(0,0,0,0.5);
}
.paraAbout p
{
    line-height: 1.9;
    font-size: 16px;
    letter-spacing: 2px;
    text-align: justify;
    padding: 20px;
}

.headingText h1
{
    text-align: center;
    color: chocolate;
    font-size: 50px;
    font-family: 'Times New Roman', Times, serif;
    text-transform: uppercase;
    text-shadow: 3px 3px 4px rgba(0,0,0,0.5);
}
.furScroll
{
    background-color: burlywood;
    overflow: auto;
    white-space: nowrap;
    padding: 10px;
}
.furScroll img{
    width: 290px;
    height: 290px;
    padding: 10px;
    cursor: pointer;
}
.furScroll img:hover{
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
    box-shadow: 3px 3px 4px rgba(145, 0,0, 0.5);
    border-radius: 50%;
}