.footer-container{
    padding:  20px;
    text-decoration: none;
    display: flex;
    justify-content: space-evenly;
    height: 200px;

}

footer{
     background: rgba(1, 255, 255, 0.2);
    backdrop-filter: blur(10px) saturate(180%);
    position: relative;
    z-index: 1;
}
.link{
    text-align: start;
}
.footer-links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contributions{
display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-social{
display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-container h1{
    font-size: 18px;
    text-transform: uppercase;
    color: #0bcee7;
    margin-top: .6rem;
}

.link a{ 
    color: #fff;
    text-decoration: none;
    z-index: 2000;
    position: relative;
}

.link a:hover{
   text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        height: auto;
    }
}
.hire-me{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    width: 300px;
}
.hire-me a{ 
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 10px 20px;
    border: 1px solid #0bcee7; 
    background: rgba(1, 255, 255, 0.2);
    backdrop-filter: blur(10px) saturate(180%);
    border-radius: 20px;
    text-decoration: none;
    transition: all 1s ease;
}
.hire-description {
    color: #fff;
    font-size: .8rem;
    text-align: center;
    transition: all 1s ease;
}

.hire-me a:hover{
   background: rgba(1, 255, 255, 0.2);
   color: #0bcee7;
   animation: sake .5s ease;
}

@keyframes sake {
    0% {
        transform: translateY(-10px);
    }
    25% {
        transform: translateY(10px);
    }
    50% {
        transform: translateY(-10px);
    }
    75% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

.copy-right{
     background: rgba(1, 255, 255, 0.1);
    backdrop-filter: blur(10px) saturate(180%);
    padding: 20px;
}

.copy-right p{
    text-align: center;
    font-weight: 600;
    color: #d0ff01;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    margin-top: 5px;
}