.footer {
    background: var(--lighter-bg);
    color: var(--secondary-color);
    padding: 3rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 0.125em solid var(--crimson-color);
    box-shadow: 0 0 10px var(--box-shadow);
    background: linear-gradient(to right, var( --main-color), var(--footer-shadow));
    background-size: 300% 300%;
    animation: gradientScroll 6s ease infinite;
    font-size: 18px;
    margin-top: 110px;
}
.footer .links {
    width: 100%;
}

.footer a{
    all: unset;
    cursor: pointer;
} 
.footer ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex: 4;
    flex-direction: row;
    justify-content: center;
    padding: 0;
}

.footer li a{
    padding: 0.5rem 1.25rem;
}

.footer li{
    transition:all 150ms ease-out;
}

.footer li:hover {
    transform: scale(1.1);
}

.footer .socials ul {
    display: flex;
}

.footer .links ul li {
    padding: 10px;
}
.footer .socials ul li {
    padding: 10px;
}
.footer .socials ul li a i {
    font-size: 25px;
}

.footer .rights{
    margin-top: 1.25rem;
    font-size: 16px;
    text-align: center;
}

@keyframes gradientScroll {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }


  #oxyLogo {
    position: fixed; /* Fixed position to stay in place while scrolling */
    top: 50%; /* Center vertically */
    left: -50%; /* Align to the left edge */
    transform: translateY(-50%); /* Adjust vertical centering */
    z-index: -1; /* Keep it behind other content */
    width: 100vw; /* Make it smaller, only half the viewport width */
    overflow: hidden; /* Hide the right half */
    opacity: 0.08;
}

#oxyLogo svg {
    fill: var(--text);
    stroke: var(--text);
    width: 100%; /* Ensure SVG scales with the container */
    height: auto; /* Maintain aspect ratio */
}

@media (max-width:1000px) {
    #oxyLogo {
        display: none;
    }
}
