* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}



.logo img {
    width: 66%;
    height: 15vh;
    padding: 15px;
    padding-left: 500px;
}

.navi {
    background-color: rgb(11, 97, 3) !important;

}

.navi img {
    width: 100%;
    height: 7vh;

}

.menu {
    color: rgb(248, 242, 242) !important;
    text-transform: uppercase;
    font-weight: bold;

}

.card {
    height: 100vh !important;
}



body {
    font-family: Arial, sans-serif;
    background-color: #e0f7e9;
    margin: 0;
    padding: 0;
}

header {
    background-color: #228b22;
    color: white;
    padding: 20px;
    text-align: center;
}

.animal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
}

.animal-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
    transition: transform 0.2s;
}

.animal-card:hover {
    transform: scale(1.05);
}

.animal-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.animal-card h2 {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}


.footer {
    width: 100%;
    background-color: #2e7d32;
    height: 60vh;
    border-top: 2px solid rgb(240, 239, 239);
}

.footrap {
    /* padding-right: 200px; */
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    grid-row-gap: 15px;
    grid-column-gap: 15px;

}


.box10 h1 {
    padding-left: 20px;
    font-size: 18px;
    margin-top: 30px;
    color: rgb(243, 236, 236);
    font-weight: bold;

}

.box10 ul li {
    color: rgb(243, 241, 241);
    list-style: none;
    margin-left: -30px;
    padding-top: 8px;
    font-weight: bold;
}

.box10 table {
    margin-top: 30px;
}

.box10 ul li:hover {
    color: gray;
    text-decoration: underline;
}

footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 15px;

}