/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Basic styling for the header */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Styling for the coupon listing section */
.coupon-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.coupon {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    max-width: 300px;
    background-color: #f9f9f9;
}

.coupon img {
    max-width: 100%;
}

/* Basic styling for the footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
