html, body {
    height: fit-content;
    width: fit-content;
    position: relative;
    margin: 0;
    padding: 0;
}


body::before {
    display: block;
    content: "";
    height: 60px;
}
.navbar-brand img {
    border-radius: 100%;
}


/* Footer */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #971173;
    filter: opacity(1);
    border-color: #971173;
    min-height: 2.5rem;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
 }

footer .social, footer .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 !important;
    flex-wrap: wrap;
 }

footer .social li, footer .menu li{
    list-style: none;
 }

footer .social li a {
    font-size: 2rem;
    color: white;
    margin: 0 10px !important;
    display: inline-block;
    transition: 0.5s;
 }

footer .social li a:hover {
    transform: translateY(-10px);
 }

footer .menu li a {
    font-size: 1.2rem;
    color: white;
    margin: 0 10px !important;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75;
    text-align: center;
    margin-block-start: 0;
    padding-inline-start: 0;
 }

footer .menu li a:hover {
    opacity: 1;
 }

footer p {
    color: white;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
 }

footer .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(./images/wave.png);
    background-size: 1000px 100px; 
 }

footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
 }

footer .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
 }

footer .wave#wave3 {
    z-index: 999;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave_03 3s linear infinite;
 }

footer .wave#wave4 {
    z-index: 1000;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_04 3s linear infinite;
 }

 @keyframes animateWave {
    0%
    {
        background-position-x: 1000px;
    }
    100%
    {
        background-position-x: 0px;
    }
 }

 @keyframes animateWave_02 {
    0%
    {
        background-position-x: 0;
    }
    100%
    {
        background-position-x: 1000px;
    }
}
 @keyframes animateWave_03 {
    0%
    {
        background-position-x: 999px;
    }
    100%
    {
        background-position-x: 10px;
    }
 }

 @keyframes animateWave_04 {
    0%
    {
        background-position-x: 10px;
    }
    100%
    {
        background-position-x: 999px;
    }
 }