* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body 
{
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFF0;
}

h1 
{
    font-size: 24px;
    font-weight: bold;
}

h2 
{
    font-size: 20px;
    margin-bottom: 10px;
}

h3 
{
    font-size: 18px;
    margin-bottom: 10px;
}

h4 
{
    font-size: 16px;
    color: #FEA405;
}

p 
{
    font-size: 16px;
    line-height: 1.6;
}

.container 
{
    width: 100%;
}

.header 
{
    background-color: #708A58;
    color: white;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
}

.menu-info 
{
    display: flex;
    justify-content: center;
    padding: 12px 30px;
    gap: 25px;
    font-weight: 600;
    background-color: #626F47;
    list-style: none;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}

.menu-info li a
{
    color: #A4B465;
    text-shadow: #000000 1px 1px 5px;
    text-decoration: none;  
    transition: all 0.5s;
}

.menu-info li a:hover 
{
    color: #FFB823;
}

.box
{
    display: flex;
    gap: 20px;
    padding: 10px;
}

.leftbar 
{
    width: 250px;
    background-color: #f7b629   ;
    padding: 20px;
    border-radius: 10px;
    height: fit-content;
}

.leftbar li 
{
    list-style: none;
    margin-bottom: 10px;
}

.leftbar a 
{
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.leftbar a:hover 
{
    color: #ff2222;
}

.content 
{
    flex: 1;
    background-color: #DBE4C9;
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.judul
{
    color: #ff2222;
    text-shadow:#000000 1px 1px 5px;
    margin-bottom: 20px;
    text-align: center;
}

.image 
{
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto 20px auto;
}

.rightbar 
{
    width: 300px;
    background-color: #f7b629;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: fit-content;
}

.rightbar a 
{
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.rightbar a:hover 
{
    color: #ff2222;
}

.rightbar p 
{
    font-size: 14px;
    color: #333;
}

.animals
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: 20px;
}

.foto
{
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.animal
{
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #FFB823;
    padding: 15px;
    text-align: center;
    font-size: 16px;
    border-radius: 10px;
    transition: all;
    transition-duration: 0.3s;
}

.animal:hover 
{
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}


.footer 
{
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    position: fixed;
}
