body {
    background-color: hsla(500, 33%, 25%, .75);
}
Footer {
    background-color: #222;
}
header {
    background-color: #AB886D;
}
#wellcome {
    color: aqua;
    font-size: 40px;
    margin: auto;
    background-color: none;
}
#hello {
    color: green;
    font-size: small;
    font-style: unset;
    text-align: center;
}
.mytable{
    color: green;
    background-color: white;
    font-size: medium;
    font-style: unset;
    margin-left: 20px;
    margin-top: 120px;
}
#ddd {
    color:green;
}
#dd {
    color: yellow;
}
#d {
    color:red;
}
.footer {
    background-color: #222;
    color: #fff;
    padding: 20px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
}

.footer-links, .footer-social {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links ul, .footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li, .footer-social ul li {
    margin: 5px 0;
}

.footer-links ul li a, .footer-social ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-divider {
    border-top: 1px solid #555;
    margin: 20px 0;
}

.footer-address, .footer-copyright {
    text-align: center;
    font-size: 14px;
}
/* Container for the carousel and overlay */
.carousel-container {
    position: relative;
    width: 100%;
    height: auto;
}

/* Container for the carousel and overlay */
.carousel-container {
    position: relative;
    width: 100%;
    height: auto;
}

/* Center the overlay content vertically and horizontally */
.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* White text to stand out on photos */
    text-align: center;
    z-index: 10; /* Make sure it's above the carousel */
}

/* Style the search form */
.search-input {
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: none;
    margin-right: 10px;
}

.search-btn {
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    border: none;
    background-color: #ff6600; /* Customize button color */
    color: white;
    cursor: pointer;
}

.search-btn:hover {
    background-color: #ff4500; /* Hover effect */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .overlay-content h1 {
        font-size: 2em;
    }

    .search-input, .search-btn {
        font-size: 0.9em;
        padding: 8px;
    }
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
}
/* Ensure header layout */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #AB886D;
    padding: 10px 20px; /* Adjust padding as needed */
}

/* Align the logo to the left side */
.header-table {
    display: flex;
    align-items: left;
}

.logo img {
    height: 50px; /* Adjust height as needed */
    display: block;
}

/* Center the navigation links */
nav {
    flex-grow: 1; /* Takes up remaining space for alignment */
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffa500;
}


/* Social Media Styling */
.social-media {
    display: flex;
    gap: 10px;
}

.social-media img {
    width: 20px; /* Adjust size as needed */
}

/* Responsive Layout for Mobile */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px; /* Position below header */
        left: 0;
        text-align: center;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px;
        background-color: white;
    }

    .nav-active {
        display: flex; /* Show nav when active */
    }

    .social-media {
        display: none; /* Hidden by default */
        flex-direction: column;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .nav-active + .social-media {
        display: flex; /* Show social media when menu is active */
    }
}

/* Container and Content Styling */
.container, .content {
    max-width: 100%;
}

.media-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.media-container embed, .media-container figure {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .media-container {
        flex-direction: column;
        align-items: flex-start;
    }
}
.circular{
    radius = 120px
}

