.footer {
    color: var(--light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-frame {
    background-color: var(--dark);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;    
}

.footer-container {
    max-width: 1065px;
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Align items to the top */
    justify-content: space-between;
    gap: 10rem;
    width: 100%;
}

.footer-logo-date-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the top */
    justify-content: flex-start; /* Align items to the top */
}

.logo-image {
    height: 20px;
    width: auto;
}

.footer-date {
    font-size: 1.5rem;
    font-weight: 200;
    color: var(--light);
    padding: 0;
    margin: 0;
}


.footer-list {
    list-style: none;
    padding: 0;
    margin: 0; /* Remove default margin */
    display: flex;
    flex-direction: row;
    align-items: flex-end; /* Align items to the top */
    gap: 1rem;
}

.footer-item a {
    text-decoration: none;
    color: var(--light);
    font-size: 1rem;
    transition: color 0.05s ease-in-out;
}

.footer-item a:hover {
    color: var(--light-d);
}


.footer-img {
    width: 100%;
}