body {
    background-color: #260414;
    font-family: Courier;
    margin: 0;
    padding: 0;
}
pre {
    margin: 0;
    padding: 10px;
    border-radius: 5px;
    white-space: pre-wrap; /* Ensures text wraps as needed */
    color: #fca9d0; /* Change text color */
}

.top-bar {
    background-color: #66154c;
    background-image: url('blue-flowers-c.png'); /* Add your image path here */
    background-size: cover; /* Ensures the image covers the entire header */
    background-position: center; /* Centers the image */
    padding: 20px;
    text-align: center;
}

.top-bar a {
    text-decoration: none;
    color: #fca9d0;
}

.top-bar a:hover {
    color: #fff; /* Change text color on hover */
}

h1 {
    text-align: center;
    color: #fca9d0;
    margin: 0;
    padding: 10px 0;
    border: 2px; /* Doesn't actually have a boarder but somehow got rid of the underline for some reason*/
    display: inline-block; /* ^ */
    text-shadow: 
        -1px -1px 0 #260414,  
        1px -1px 0 #260414,
        -1px 1px 0 #260414,
        1px 1px 0 #260414; /* Create a multi-layer shadow to give the text an outline */
}

h2 {
    text-align: center;
    color: #fca9d0;
    font-size: 2em;
    margin: 10;
    padding: 10px 0;
}

h3 {
    text-align: center;
    color: #fca9d0;
    font-size: 1.5em;
    margin: 10;
    padding: 10px 0;
}

p {
    color: #f8e0ea;
    text-align: center;
    line-height: 1.8; /* Increase line spacing */
}

nav {
    background-color: #260414;
    text-align: center;
    padding: 10px 0;
    border-bottom: 2px solid #f8e0ea; /* Add a solid line at the bottom of the nav bar */
    padding: 30px 80px 30px 50px; /* Top, right, bottom, left */
}

.menu {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu li {
    margin: 0 10px;
}

.menu a {
    text-decoration: none;
    color: #fcb6e5;
    padding: 10px 15px;
    transition: color 0.3s; /* Smooth transition for text color change */
}

.menu a:hover {
    color: #fff; /* Change text color on hover */
}


.separator {
    width: 20px; /* Adjust the width of the separator image */
    height: auto; /* Maintain aspect ratio */
    display: inline-block;
}

.image-container {
    background-color: #260414; /* Set your desired background color */
    text-align: center; /* Center the image horizontally */
    padding: 0px; /* Optional: Add padding around the image */
}

.image-container img {
    width: 500px; /* Set to your desired width */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: auto;
}

.image-gallery {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.image-gallery img {
    max-width: 100%;
    height: auto;
    width: 400px; /* Adjust as needed */
    transition: transform 0.3s;
}

.image-gallery img:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}