/* Task A */
h1, h2, h3, h4, h5, h6 {
    background-color: #d7e1f2;
    font-weight: bold;
    color: #1f2123;
}

/* Task B */
.dish {
    background-color: rgb(247, 185, 86);
    padding: 10px;
    margin: 10px;
    border: 2px dashed colorOfYourChoice;
}

/* Task C */
header, footer {
    background-color: #bc8e43;
}

/* Task D */
footer {
    font-size: 0.75rem; /* 1rem = 16px, so 0.75rem is approximately 12px */
}

/* Task E */
nav {
    background-color: #474644;
    color: white;
}

/* Task F */
nav li {
    list-style-type: none;
}

/* Task G */
.dish h1, .dish h2, .dish h3, .dish h4, .dish h5, .dish h6 {
    font-style: italic;
}

/* Task H */
.dish {
    border-radius: 10px; /* Adjust the value as needed */
}

/* Task I */
#locationList {
    list-style-image: url("../images/arrowFile.gif");
}

/* Task J */
a:visited {
    color: green;
}

/* Task K */
nav a:visited {
    color: orange;
    text-decoration: none;
}

/* Task L */
.dish .more-details {
    color: red;
}

/* Task M */
.underConstruction {
    color: orange;
    font-style: italic;
}
