
body {
    background-color: #fdf5d5;
}
h1 {
    font-family: 'Baskervville';
    color: black 
}
a {
    font-family: 'Baskervville';
    color: black;
    text-decoration: none
}
p {
    font-family: 'Baskervville';
    color: black 
}
header {
    background-color: #fdf5d5;
    color: black;
    padding: 0;
    text-align: center;
    border-bottom: 3px solid black;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 2em;
    font-weight: bold;
    position: relative;
}
footer {
    background-color: #d9d6d6;
    color: black;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    border-top: 1px solid black;
}
nav {
    display: flex;
    justify-content: center;
    background-color: #fdf5d5;
    border-bottom: 1px solid black;
}
nav a {
    color: black;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}
nav a:hover, nav a.active {
    background-color: white;
}
.price {
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 0.5em;
    font-family: "Courier New", monospace;
}

/* Grid container */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card styling */
.card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

/* Image */
.card img {
    width: 60%;
    height: auto;
    display: block;
}

/* Title */
.card h2 {
    font-size: 1.4rem;
    margin: 15px 0 10px;
}

/* Description */
.card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

/* Date */
.date {
    font-size: 0.85rem;
    color: #888;
}
