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

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

nav {
    background-color: #444;
    color: white;
    padding: 1em;
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    display: inline-block;
    margin-right: 10px;
}

a {
    text-decoration: none;
    color: white;
}

#imageSection {
    position: relative;
}

figure {
    text-align: center;
    max-width: 80%;
    margin: auto;
    color: rgb(22, 16, 16);
    position: relative;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #ddd;
}

figcaption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-style: italic;
    color: rgb(65, 57, 57);
    background: rgba(0, 0, 0, 0.5); /* Translucent background */
    padding: 10px;
    border-radius: 5px;
    font-size: 1.5em; /* 1.5 times bigger font size */
}

p {
    font-size: 1.5em; /* 1.5 times bigger font size for the paragraph */
}

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

/* Responsive Styles */
@media only screen and (max-width: 600px) {
    nav {
        display: block;
    }

    li {
        display: block;
        margin-bottom: 5px;
    }
}