#footer {
    background-color: #00182a;
    padding: 50px 0;
    text-align: center;
}

#footer p {
    color: #fff;
}

#footer .more {
    justify-content: center;
}

.footer_menu {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin: 50px 0 30px 0;
}

.footer_menu li {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    transition: font-weight 0.2s, color 0.2s;
}

.footer_menu li:hover {
    color: #ff8a00;
    font-weight: 900;
}

.social {
    display: flex;
    justify-content: center;
    margin: 20px 0 50px 0;
    gap: 30px;
}

.social li {
    font-size: 20px;
    color: #fff;
    transform: scale(1);
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
    transition: transform 0.2s, color 0.2s;
}

.social li:hover {
    transform: scale(1.2);
    color: #ff8a00;
}