footer {
    position: relative;
    top: 10vh;
}

footer .footer-container {
    background: rgba(152, 152, 152, 0.3);
    padding: 20px;
}

footer .website-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .main-title h1 {
    color: white;
    font-weight: 500;
}

footer .main-title h1 span {
    background: linear-gradient(89.89deg, #FF7272 55%, rgba(255, 114, 114, 0) 99.9%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 200;
}

footer .main-title p {
    color: rgba(255, 255, 255, 0.726);
    font-weight: 100;
    width: 400px;
}

footer .footer-wrapper {
    color: white;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.footer-wrapper h2 {
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 10px;
}

.footer-wrapper ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.footer-wrapper a {
    text-decoration: none;
    color: white;
    transition-duration: 0.5s;
}

.footer-wrapper a:hover {
    color: #FF7272;
}

.footer-wrapper ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-wrapper .icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    font-size: 20px;
}

.footer-wrapper .icons a {
    color: white;
    transition-duration: 0.5s;
}

.footer-wrapper .icons a:hover {
    color: #FF7272;
}

@media (max-width: 768px) {
    footer .website-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
        border-radius: 20px;
    }

    footer .main-title {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .main-title h1 {
        text-align: center;
    }

    footer .main-title p {
        max-width: 80%;
        text-align: center;
        margin: 10px auto;
    }

    footer .footer-wrapper {
        text-align: center;
        align-items: center;
    }

    .footer-wrapper h2 {
        text-align: center;
    }

    .footer-wrapper ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-wrapper ul li {
        align-items: center;
        text-align: center;
    }

    .footer-wrapper .icons {
        justify-content: center;
    }
}