
body {
    font-family: Garamond, serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

footer {
    background: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 10px;
    background: #f4f4f4;
}

.container-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.container {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: left;
    width: 30%;
    min-width: 250px;
}

.container img {
    max-width: 100%;
    border-radius: 8px;
}

.hero a {
	color: #333;
	text-decoration: none;
}

/*.container a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.container a:hover {
    background: #555;
}*/

@media (max-width: 768px
