
        body {
            display: flex;
            justify-content: center;
            height: 10vh;
            margin: 0;
            font-family: 'Raleway', sans-serif;
            font-size: 1.1em;
        
        }
        .container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            width: 80%;
            max-width: 1200px;
        }
        .header {
            grid-column: span 4;
            background-color: lightblue;
            padding: 20px;
            text-align: center;
        }
        .main-nav{
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-gap: 10px;
            padding: 0;
            list-style: none;
            
            }
           /* Hamburger Menu Styling */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: black;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden; /* Ensures that overflowing slides are hidden */
}

.mySlides3d {
    display: none; /* Slides are hidden by default */
    width: 100%; /* Ensures full width */
}

img {
    width: 100%; /* Ensures images scale properly */
    height: auto; /* Maintain aspect ratio */
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgb(249, 165, 165);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}        
        .full-row {
            grid-column: span 4;
            background-color: lightgoldenrodyellow;
            padding: 20px;
        }
        .title-row{
            grid-column: span 4;
            background-color: rgb(245, 245, 105); 
            text-align: center;
        }
        .two-column-1, .two-column-2 {
            grid-column: span 2;
            background-color: lightpink;
            padding: 20px;
        }

        .four-column {
            grid-column: span 1;
            background-color: rgb(135, 156, 171);
            padding: 20px;

        }

        .footer {
            grid-column: span 4;
            background-color: lightgray;
            padding: 20px;
            text-align: center;
        }
         /* Media query for mobile devices */
         @media (max-width: 568px) {
            .container {
                grid-template-columns: 1fr;
            }
            .header, .four-column, .full-row, .title-row, .two-column-1, .two-column-2, .footer {
                grid-column: span 1;
            }
            .main-nav {
                display: none;
                flex-direction: column;
        
                right: 0;
               
                width: 100%;
                text-align: center;
            }

            /* adds "active" to end nav class to control visibility and display hamburger */
            .main-nav.active {
                display: flex;
            }
        
            .hamburger {
                display: flex;
            }
        }
 