footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    gap: 20px;

    padding: 30px;

    background: rgba(20, 30, 60, 0.5);
    backdrop-filter: blur(10px);

    border-top: 3px solid rgba(255, 255, 255, 0.1);
}

.footer-left p {
    margin: 4px 0;

    color: rgba(255, 255, 255, 0.8);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-right span {
    height: 20px;
    width: 2px;
    background: rgba(255, 255, 255, 0.4);
}

.footer-right a {
    text-decoration: none;
}

.footer-right a:hover {
    transform: scale(1.03);
}