.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: rgb(45, 164, 158);
    color: white;
    font-family: Arial, sans-serif;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3% 5%;
    text-align: center;
}

.footer-text {
    margin-bottom: 20px;
    font-size: 16px;
    max-width: 600px;
}

.footer-social h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.social-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 10px;
}

.social-icon {
    font-size: 24px;
}

.footer-bottom {
    background-color: rgb(34, 128, 123);
    padding: 10px 0;
    text-align: center;
}

.designer-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        padding: 2% 10%;
    }

    .footer-text {
        max-width: 300px;
        text-align: left;
    }

    .footer-social {
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .footer {
        font-size: 18px;
    }

    .social-icon {
        font-size: 28px;
    }

    .designer-link {
        font-size: 16px;
    }
}