.footer {
    background-image: url("../../assets/footer-bg.svg");
    margin-top: 30rem;
    color: white;
    padding-top: 5rem;
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: cover;
}

.footer-content {
    margin-top: 5rem;
    background-color: #a62017;
    min-height: 20rem;
    font-size: medium;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 30px;
    position: relative;
}

.footer-line {
    left: -10%;
    right: -10%;
    position: absolute;
    pointer-events: none;
    width: 120%;
}

.footer-headline {
    font-weight: bold;
    font-size: large;
}

ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

li a, li a:hover {
    color: white;
}

li a {
    text-decoration: none;
}

li a:hover {
    text-decoration: underline;
}

@keyframes wave1 {
    0% {
        top: -200px;
    }

    50% {
        top: 100px;
        left: -25%;
        right: -25%;
    }

    100% {
        top: -200px;
    }
}

@keyframes wave2 {
    0% {
        top: -200px;
    }

    50% {
        top: 100px;
        left: -5%;
        right: -5%;
    }

    100% {
        top: -200px;
    }
}

@media only screen and (min-width: 960px) {
    .wave1 {
        animation-duration: 10s;
        animation-name: wave1;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }

    .wave2 {
        top: 40px;
        animation-duration: 16s;
        animation-name: wave2;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }
}

@media only screen and (max-width: 960px) {
    .footer-content {
        padding-left: 10px;
    }

    .footer-line {
        display: none;
    }
}
