* {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;}
body {
    background: url("images/background.jpg") no-repeat center center / cover fixed;
}
header {
    height: 80px;
    background-color: #329832;
}
main {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(224, 252, 183, 0.667);
    padding: 50px;
}
footer {
    min-height: 60px;
    background-color: #329832;
    padding: 20px;
    color: rgb(245, 245, 245);
    text-align: center;
}
a {
    text-decoration: none;
    color: black;
    font-weight: normal;
    transition: all 0.3s ease-out;
}
a:hover {
    color: white;
    font-weight: bold;
}
#logo {
    font-size: 2em;
    color: rgb(245, 245, 245);
    padding-top: 20px;
    padding-left: 20px;
    font-size: 2em;
}
#sort-by {
    background-color: #329832;
    border-radius: 8px;
    border: none;
    padding: 5px;
    color: white;
}
.DetailsImage {
    max-width: 1200px;
    max-height: 80vh;
    overflow: hidden;
}
.DetailsImage img {
    max-width: 100%;
}
.imageCard {
    height: 250px;
    width: 250px;
    border: 1px solid black;
    border-radius: 300px;
    overflow: hidden;
    align-items: center;
    display: block;
}
.imageCard img {
        max-width: 100%;
        object-fit: contain;
}
.pageHeader {
    text-align: center;
    margin-bottom: 20px;

}
.plant-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.entry {
    height: 400px;
    width: 250px;
    padding: 10px;
    border-radius: 15px;
    background-color: transparent;
    color: black;
    transition: all 0.3s ease-out;
    z-index: 10;
    opacity: 1;
}
    .entry:hover {
        transform: scale(1.1);
        background-color: #329832;}
    .entry:active {
        background-color: white;
        opacity: 0;
        
    }
    #pagination-controls {
        text-align: right;
    }
    #prev-btn, #next-btn {
        background-color: #329832;
        color: white;
        padding: 5px 10px;
        margin-top: 20px;
        margin-right: 10px;
        border: none;
        border-radius: 8px;

    }