﻿
body {
    background-color: #558B2F;
}
.animal-details, .bird-details {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center; 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.animal-details h2, .bird-details h2 {
     font-size: 32px;
     font-family: Georgia;
     margin-bottom: 20px;
     color: #2d2d2d;
     text-transform: uppercase;
}
.animal-details img, .bird-details img {
    width: 100%;
    max-width: 400px; 
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.animal-details p, .bird-details p {
    font-size: 18px;
    color: #613613;
    margin-bottom: 10px;
    line-height: 1.6;
    font-family: Verdana;
}
.animal-details p strong, .bird-details p strong {
     font-weight: bold;
     color: #613613;
     font-family: Verdana;
}
