footer{
    padding-left: 3em;
    padding-right: 3em;
    padding-top: 1em;
    padding-bottom: 1em;
    width: 100%;
    height: auto;
    background: none;
    display: flex;
    flex-direction: row;
    gap: 1em;
    justify-content: space-between;
}

.copy{
    width: 400px;
    height: auto;
    background: none;
    display: flex;
    justify-content: flex-start;
}

.copy a{
    width: 400px;
    height: auto;
    color: #fff;
    background: none;
    display: flex;
    justify-content: flex-start;
}

.copy a:hover{
    width: 400px;
    height: auto;
    color: rgba(255, 255, 255, .5);;
    background: none;
    display: flex;
    justify-content: flex-start;
    transition: all ease-in-out .3s;
}

.development{
    width: 400px;
    height: auto;
    background: none;
    display: flex;
    justify-content: flex-end;
}

.copy p{
    width: 100%;
    height: max-content;
    color: rgb(255, 255, 255);
}

.development p{
    width: 100%;
    height: max-content;
    color: rgb(255, 255, 255);
    text-align: end;
}

.development a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: bold;
}

.development a:hover{
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-weight: bold;
}

@media screen and (max-width: 500px){
    footer{
        padding-left: 2em;
        padding-right: 2em;
        padding-top: 1em;
        padding-bottom: 1em;
        width: 100%;
        height: auto;
        background: none;
        display: flex;
        flex-direction:  column;
        gap: 1em;
    }

    .copy{
        width: 100%;
        height: auto;
        background: none;
        display: flex;
        justify-content: center;
    }

    .development{
        width: 100%;
        height: auto;
        background: none;
        display: flex;
        justify-content: center;
    }

    .copy p{
        width: 100%;
        height: max-content;
        color: rgb(255, 255, 255);
        text-align: center;
    }

    .development p{
        width: 100%;
        height: max-content;
        color: rgb(255, 255, 255);
        text-align: center;
    }
}