body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url("images/funky_cuda_bkgrnd_pattern.jpg");
    background-repeat: repeat;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

header {
    background-color: #40c8f4;
    color: #fff;
    padding: 10px 0;
    width: 100%;
}


nav {
    background-color: #f3705a;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 30px; /* Add margin to create a gap between menu bar and slideshow */
}

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

nav ul li {
    display: inline;
    margin: 0 10px;
    position: relative; /* Add position relative to each menu item */
}

nav ul li:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%; /* Adjust the position of the separator vertically */
    right: -12px; /* Adjust the position of the separator horizontally */
    height: 120%; /* Adjust the height of the separator */
    width: 2px; /* Adjust the width of the separator */
    background-color: #40c8f4; /* Adjust the background color of the separator */
    transform: translateY(-50%); /* Center the separator vertically */
}

nav ul li a {
	font-size: 1em; /* Adjust the font size as needed */
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase; /* Make text all caps */
}

nav ul li a:hover {
    color: #40c8f4;
}



.container img {
    max-width: 100%; /* Ensure the image does not exceed its container's width */
    height: auto; /* Maintain the aspect ratio */
}

/* Adjustments for smaller screens */
@media only screen and (max-width: 600px) {
    .container img {
        width: 80%; /* Adjust the width as needed for smaller screens */
        max-width: none; /* Override max-width to allow the image to scale down */
    }
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    margin-top: 30px; /* Add margin to create a gap between menu bar and slideshow */
    border-radius: 20px; /* Rounded corners */
    overflow: hidden; /* Ensure the rounded corners are applied to the content */
}
.prev, .next {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    color: white; /* White text color */
    font-size: 24px; /* Adjust the font size */
    padding: 10px; /* Add padding for better visibility */
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* Header Text styles */
.header-text {
    text-align: center;
    margin-bottom: 20px;
}

.header-text p {
    font-size: 36px; /* Larger font size */
    font-weight: bold; /* Bold font weight */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Add drop shadow */
}

.bold {
    font-weight: bold;
}
/* Your existing CSS styles */

.body-text {
    color: #fbf13f; /* Change text color to yellow */
    font-family: 'Permanent Marker', cursive; /* Use the Permanent Marker font */
    line-height: 1; /* Adjust line height as desired */
}
.image-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.image-box {
    width: 45%; /* Adjust the width of each image box */
    margin-bottom: 30px;
    text-align: center;
}

.rounded-image {
    max-width: 100%; /* Make the image scale with the page width */
    border: 4px solid #f3705a; /* Add a border to the images with the specified color */
    border-radius: 15px; /* Add rounded corners to the border */
	box-shadow: 0 6px 6px rgba(0, 0, 0, .5); /* Drop shadow */
}

.text-container {
    width: 95%; /* Match the width of the image container */
    background-color: #40c8f4; /* Color box behind text */
    padding: 10px;
    border-radius: 10px; /* Rounded corners for color box */
    margin-top: 10px;
    border: 4px solid #fbf13f; /* Border with #fbf13f color */
    box-shadow: 0 6px 6px rgba(0, 0, 0, .5); /* Drop shadow */
}


.text-container h3,
.text-container p {
    color: #1e4d5f; /* Text color */
    margin: 0; /* Remove default margins */
}

@media only screen and (max-width: 768px) {
    .image-box {
        width: 90%; /* Full width for smaller screens */
    }
}


.social-links {
    text-align: center; /* Center align the social media links */
    margin-top: 20px; /* Add space between footer content and social links */
    margin-bottom: 10px; /* Add space between social links and footer bar */
}

.footer-bar {
    background-color: #1e4d5f; /* Footer background color */
    color: #fff; /* Text color */
    text-align: center; /* Center align text */
    padding: 10px 0; /* Add padding */
}
/* Styles for Contact Info Container */
.contact-container {
    background-color: #f4f1eb; /* Set background color */
	border: 4px solid #40c8f4; /* Color stroke with #f3705a */
    padding: 20px;
    border-radius: 15px; /* Add rounded corners */
    text-align: center;
    width: 80%; /* Set width to 80% of the viewport */
    margin: auto; /* Center the container horizontally */
    color: #1e4d5f; /* Set text color */
}

.contact-container h2 {
    font-size: 24px; /* Adjust heading font size */
    margin-bottom: 20px; /* Add bottom margin */
}
.contact-container h3 {
    font-weight: bold;
}

.contact-container h3:nth-of-type(1),
.contact-container h3:nth-of-type(2),
.contact-container h3:nth-of-type(3) {
    color: #f3705a;
}