header {
    background-color: lightblue;
    text-align: center;
}
footer {
    background-color: lightblue;
    text-align: center;
    font-weight: bold;
}
body {
    background-color: lightgray;
}
.items {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    text-align: center;
}
.product {
    border: 3px solid black;
    background-color: white;
    width: 95%;
    margin: 20px;
    box-shadow: 5px 10px black;
    
}
.product:hover {
    border: 5px solid green;
    box-shadow: 5px 10px green;
}
.image {
    display: inline-block;
    float: left;
    width: 5;
    width: 20%;
    margin: 20px;
}
.details {
    display: inline-block;
    float: left;
    width:50%;
}
.description {
    display: inline-block;
    float: left;
    width: 100%;
    margin-left: 3px;
    margin-right: 3px;
    border-top: 2px solid black;
}
