body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    a:visited {
        color: blue;
    
}

h1 {
    text-align: center;
    color: #333;
    margin-top: 20px;
}

.item {
    text-align: center;
    margin: 20px auto;
    max-width: 600px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.item-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.item-description {
    color: blue;
    font-weight: bold;
    margin: 10px 0;
}

.item-price {
    color: green;
    font-weight: bold;
    margin: 10px 0;
}

.item-availability {
    color: red;
    font-weight: bold;
    margin: 10px 0;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

#maincontainer {
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.narrowlist{
    width: 40%;
    margin: 0 auto;
}