/* campaign-objective style */
body, h1, h2, p, ul, table {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Garbata', sans-serif;
}

/* Header */
#header {
    background-color: #ffcc00;
    position: relative;
}

#header img {
    width: 100%;
    height: 300px;
}

/* Navigation */
nav {
    background-color: white;
    text-align: center;
    font-family: 'Trebuchet MS',sans-serif;
    font-size: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
    padding: 10px; /* Add padding for better spacing */
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover,
nav a:active {
    color: #ffcc00;
}

nav a[href="campaign.html"] {
    color: #ffcc00;
}

/* Dropdown Menu */
.has-children {
    position: relative;
}

.has-children .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    text-align: left;
}

.has-children:hover .dropdown {
    display: block;
}

.dropdown li {
    display: block;
}

.dropdown a {
    color: black;
    padding: 10px;
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background-color: #ffcc00;
}

.marquee-text {
    display: inline-block;
    animation: marquee-animation 20s linear infinite;
    color: black;
    font-family: 'Trebuchet MS',sans-serif;
    font-size: 20px;
}

@keyframes marquee-animation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Body Section */

.facebook-video {
            overflow: hidden;
            width: 80%;
            padding-top: 50px;
            padding-bottom: 50px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

.objective {
    max-width: 800px;
    margin: 50px auto;
    padding-left: 40px;
    padding-bottom: 10px;
    padding-top: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    text-align: center;
}

ol {
    padding: 0;
    list-style-type: decimal;
}

li {
    margin-bottom: 10px;
}

/* Back button*/
#buttonback table{
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto;
    background-color: white;
}
#buttonback a{
    text-decoration: none;
    color: black;
    margin: 20px;
    font-size: 25px;
    font-family: 'Trebuchet MS',sans-serif;
    font-weight: bold;
    transition: color 0.3s;
}

#buttonback a:hover,
#buttonback a:active{
    color: #ffcc00;
}

#buttonback td {
    text-align: center;
    padding-bottom: 10px;
}

/* Marquee */
.marquee-container1 {
    overflow: hidden;
    white-space: nowrap;
    background-color: #ffcc00;
}

.marquee-text1 {
    display: inline-block;
    animation: marquee-animation 20s linear infinite;
    color: black;
    font-family: 'Trebuchet MS',sans-serif;
    font-size: 20px;
}

@keyframes marquee-animation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}



/* Footer */
footer {
    background-color: white;
    padding: 0px;
}

footer table {
    width: 100%;
    margin: 0 auto;
}

footer td {
    width: 100px;
}

footer #farmfresh {
    margin-left: 10px;
    margin-top: 4px;
    float: left;
    border: 1px solid #ddd; /* Add a border to the farmfresh image */
    width: 100px;
}

footer #facebook {
    margin-right: 10px;
    margin-top: 2px;
    float: right;
}

footer #instagram {
    margin-right: 10px;
    float: right;
}

footer #youtube {
    margin-right: 10px;
    margin-top: 9px;
    float: right;
}

footer p {
    text-align: center;
    font-family: timesnewroman;
    font-size: 20px;
}
