header
{
    height: 60px;
    color: white;
    background-color: rgb(17, 60, 207);
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
}

#content
{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-left: 50px;
}

.list-item
{
    border: 1px solid lightgray;
    border-radius: 6px;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 15px;
    margin-bottom: 60px;
}

img
{
    height: 200px;
    width: 200px;
}

.img-item
{
    width: 230px;
    background-color: lightgrey;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.details-item
{
    margin: 10px;
}

button
{
    border: none;
    border-radius: 20px;
    background-color: rgb(255, 216, 20);
    width: 100px;
    height: 25px;
    font-size: 15px;
}

button:hover
{
    opacity: 80%;
    cursor: pointer;
}