html {
    background-color: darksalmon;
}

nav {
    font-style: oblique;
    font-size: larger;
    background-color: lightgray;
    box-shadow: 5px 5px 5px black;
    color: black;
    margin: 6px;
    padding: 10px;
    border: 2px solid black;
    border-radius: 30px;
    text-align: center;
}

.text {
    font-size: large;
    color: black;
    text-align: center;
    margin: 10px;
    padding: 10px;
}

#header1n2 {
    color: darkgreen;
    text-decoration: underline;
    text-align: center;
    font-size: xx-large;
    font-family: "Edu VIC WA NT Beginner", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

main {
    font-family: 'Geneva';
    font-size: medium;
    background-color: rgb(214, 214, 214);
    box-shadow: 5px 5px 5px black;
    color: black;
    margin: 6px;
    padding: 20px;
    border: 2px solid black;
    border-radius: 15px;
}

/* Container for the grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Responsive columns */
    gap: 16px;
    /* Space between pictures */
    padding: 16px;
    justify-items: center;
    /* Center items horizontally */
    border: 4px solid #333;
    border-radius: 8px;
    background: rgb(123, 123, 123);
    padding: 10px;
    display: flex;
    justify-content: center;
    color: white;
    margin-bottom: 16px;
    box-shadow: 5px 4px 6px rgba(109, 0, 0, 0.15);
    font-size: 20px;
}

.text-box {
    font-size: 16px;
    color: lightgreen;
    display: inline-table;
    background: black;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 8px 12px 2px 12px;
    /* top right bottom left */
    margin-top: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

img {
    border-right: 4px solid black;
    background-color: brown;
    padding-left: 2px;
    padding-right: 2px;
    padding-block: 2px;
    /* Optional: space between image and line */
    max-width: 100%;
    border: 2px solid black;
    border-radius: 8px;
    /* Optional: rounded corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    /* Set desired width */
    height: 400px;
    /* Set desired height */
    display: block;
    border-radius: 8px;
}

.footer1 {
    text-align: center;
    font-size: medium;
    font-style: italic;
    margin: 10px;
}

a:link,
a:visited {
    color: blue;
}

a:hover {
    background-color: black;
    color: rgb(255, 231, 94);
}

.figure-description {
    font-size: medium;
    font-style: italic;
    color: darkred;
}