body{
    background-color: rgb(0, 0, 0);
}
h2{
    margin: 40px;
    color: azure;
}

#header{
    font-family: 'Philosopher', sans-serif;
    color: white;
    background-color: #000;
    margin-bottom: 60px;
    padding: 10px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    box-shadow: 0px 4px 6px 0px rgba(255, 255, 255, 0.568);
}
#detail{
    font-size: 18px;
}

.item img
{
    border-radius: 25px;
    /* border: 1px solid black; */
    object-fit:cover;
    box-shadow: 0px 2px 7px 0px rgba(255, 255, 255, 0.8);
}
.item:hover{
    filter: brightness(80%);
}
.item{
    display: flex;
    flex-direction: row;
    transition: .5s ease-in-out;
    height: 300px;
    width: 300px;
}

/* .row .mt-4{
    display: flex;
    flex-direction: column;
} */
