@keyframes glance{
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
    
}
body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #040F0F;
    color: #fff;
    line-height: 1.6;
    background-image: url(523942425_122110695284940407_1580683627568826633_n.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size:auto;
    background-attachment: fixed;
}
p a{
    color: #040F0F;
}
a{
    color: blue;
    text-decoration: none;
}
a:active{
    color: blue
}
a:hover{
    color: black;
}

.container {
    border-radius: 50px;
    background-color: #fff;
    color: #040F0F;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 50px;
    padding-bottom: 50px;
    box-shadow: whitesmoke 0px 0px 80px -15px
    ;
    transition: 0.3s;
}
footer .container, header .container{
    background-color: #fff;
}
section .container:hover{
   
    filter: invert(2);
    opacity: 0.8;
    transition: 0.3s ease-in-out;
    ;
    
}

header {
    background-color: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid #eeeeee;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 100px;
    width: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #666666;
}

.section {
    padding: 120px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.animate {
    opacity: 1;
    transform: translateY(0);
}

.section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #040F0F;
    ;
    font-size: 2em;
    font-weight: 300;
    text-decoration: underline;
}

.section p {
    font-size: 1.1em;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

footer {
    background-color: #ffffff;
    padding: 40px 0;
    border-top: 1px solid #eeeeee;
    text-align: center;
    color: #666666;
}

footer p {
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* Responsive Design */

@media (max-width: 768px) {
    body{
        background-image: none;
        background: linear-gradient(to bottom, white,white,white, black);
    }
    p a{
        color: white;
    }
    section .container {
        border-radius: 0px;
        padding: 0 20px;
        padding-top: 50px;
        padding-bottom: 50px;
        background-color: #040F0F;
    }
    section .container p, section .container h2{
        color: #fff;
        opacity: 10;
    }

    header .container {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        height: 50px;
        margin-bottom: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav ul li {
        margin-left: 0;
    }

    .section {
        padding: 80px 0;
    }

    .section h2 {
        font-size: 1.5em;
        margin-bottom: 40px;
    }

    .section p {
        font-size: 1em;
        margin-bottom: 20px;
    }

    footer {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .section h2 {
        font-size: 1.3em;
    }

    .section p {
        font-size: 0.9em;
    }
}
