.pageFooter {
    width: 100%;

    padding: 20px 10px 40px 10px;
    background-color: rgb(40, 40, 40);
    box-shadow: 0px 0px 25px rgb(0, 0, 0);

    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.pageFooterDesignBar {
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.pageFooterContent {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

.pageFooterSection {
    padding: 20px 0px;
}

.pageFooterSectionTitle {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.pageFooterLink {
    display: block;
    color: rgb(180, 180, 180);
    margin-bottom: 5px;
}

.pageFooterLink:hover {
    color: rgb(200, 200, 200);
}

@media screen and (max-width: 300px) {
    .pageFooterContent {
        flex-direction:column;
        align-items: center;
    }
}