* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-color: transparent;
}

.navlist {
    width: 100%;
    height: 100px;
    background-color: lightblue;
    border: solid 2px darkblue;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navlist img {
    height: 80px;
    margin-left: 20px;
    vertical-align: middle;
}

span {
    vertical-align: middle;
}

.navbar-right {
    margin-right: 50px;
    display: flex;
    gap: 20px;
    /* Links/Button ke beech space ke liye */
}

.navbar-right button {
    background-color: white;
    color: darkblue;
    border: 2px solid darkblue;
    font-size: 15px;
}

.navbar-right button:hover {
    color: white;
    background-color: rgb(0, 0, 0);
}

a {
    color: black;
    font-size: 20px;
    text-decoration: none;
}


.hero {
    background-image: url(./cat.jpeg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    height: 950px;

    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 120px;
    font-weight: bold;
    margin: 0;
    color: black;
}


.hero h3 {
    margin-top: 10px;
    font-size: 35px;
    color: black;
}

.hero button {
    font-size: 30px;
    border: 0px;
    background-color: darkblue;
    color: white;
    margin-top: 40px;
    width: 800px;
    border-radius: 10px;
}




.next {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    min-height: auto;
    gap: 0;

}

.next img {
    max-width: 500px;
    width: 90%;
    height: auto;
    border-radius: 5px;
    margin: 0;
    display: block;
    margin-top: 100px;

}

.fun-facts {
    background-color: #f7f7f7;
    padding: 15px 25px;
    list-style-type: none;
    border-radius: 5px;
    margin: 0;
   
}

.fun-facts li {
    margin-bottom: 8px;
    list-style-type: disc;
    margin-left: 1.2em;
}




