* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: "Noto Sans", sans-serif;
}

.footer-wave-container{
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100vw;
    line-height: 0;
    padding-top: 20px;
}

.footer-wave{
    display: block;
    width: calc(100% + 10px);
    max-width: none;
    margin: 0 -5px clamp(-9em, -7vw, -1em) -5px;
}

.footer-flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1C2C66;
    padding: 3em 0;
    p {
        margin: 0 1em;

        a{
            text-decoration: none;
        }

        a:hover{
            text-decoration: underline;
        }
    }
    img{
        margin-bottom: 1em;
    }
}

@media only screen and (width < 1000px) {
    footer{
        text-align: center;
    }
    #large-logo{
        display: none;
    }
}

@media only screen and (width > 1000px) {
    #small-logo{
        display: none;
    }
}