body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-image:  url('assets/imgs/placeholder.jpeg');
}

nav {
    /* background: #1f6f00; */
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
nav a {
    color: #ffffff;
    font-weight: bold;
    margin: 0 1rem;
    transition: color 0.3s;
}
nav a:hover {
    color: #1f6f00;
}
footer {
    background: #474747;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 1000;
}

footer p {
    font-size: 0.8 em;
}



section {
    background-color: #1f6f0000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 80px; /* Space for fixed navbar */
    padding-bottom: 60px; /* Space for fixed footer */
    position: relative;
    text-align: center;
}

section p {
    font-size: 1.1em;
}

.scroll-section {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30%;
    z-index: 500;
}
.graphic {
    flex: 1;
    max-width: 40%;
    min-width: 300px;
    height: 60%;
    background: #bed41a;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-image: url('assets/imgs/placeholder.jpeg');
    background-size: cover;
    background-position: center;
    margin: 100px;
}
.graphic:last-child {
    margin-right: 0;
    margin-left: 100px;
}
.content {
    flex: 2;
    padding: 2rem;
    /* background: rgba(31, 111, 0, 0.9); */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.fade-in {
    opacity: 0;
    transition: all 0.8s ease-in-out;
}
.fade-in-left {
    transform: translateX(-100px);
}
.fade-in-right {
    transform: translateX(100px);
}
.fade-in.show {
    opacity: 1;
    transform: translateX(0);
}
