/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling for header and navigation */
header {
    background-color: #2c3e50; /* Dark blue */
    color: #fff; /* White text color */
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff; /* White text color */
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main content area styling */
main {
    margin: 20px;
}

.row {
    margin-bottom: 20px;
}

.row-image {
    height: 300px; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
}

/* Scrolling images */
.scrolling-images {
/*    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
    background-color: #34495e; // Darker blue
    animation: slide 10s infinite; */

    display: flex;
    width: 100%; /* Three times the width of one image */
    animation: slide 15s infinite;
}

.scrolling-images img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

/* .scrolling-images img {
    flex: 0 0 auto;
    margin-right: 10px;
    scroll-snap-align: start;
    max-width: 100%;
    height: 50%;
} */
 
@keyframes slide {
    0%, 100% {
        transform: translateX(0%);
    }
    25% {
        transform: translateX(0%);
    }
    35% {
        transform: translateX(-100%);
    }
    60% {
        transform: translateX(-100%);
    }
    70% {
        transform: translateX(-200%);
    }
    95% {
        transform: translateX(-200%);
    }
}



/* Columns for main content */
.col-4 {
    width: calc(33.33% - 20px);
    margin-right: 20px;
    background-color: #2e86de; /* Bright blue */
    padding: 10px;
}

.col-4:last-child {
    margin-right: 0;
}

/* Footer styling */
footer {
    background-color: #2c3e50; /* Dark blue */
    color: #fff; /* White text color */
    padding: 10px;
    text-align: center;
}

footer ul {
    list-style-type: none;
    margin-top: 10px;
}

footer ul li {
    display: inline;
    margin-right: 10px;
}

footer ul li a {
    color: #fff; /* White text color */
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

/* General body styles */
body {
    background-color: #34495e; /* Darker blue */
    color: #ecf0f1; /* Light gray text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #fff; /* White text color */
}

p {
    margin-bottom: 15px;
}
