footer {
    height: 400px;
    background-color: var(--color-primary);

    display: flex;
    flex-direction: column;

    * {
        color: var(--color-bg) !important;
    }

    .top {
        display: flex;
        flex-direction: row;
        
        height: 100%;
        width: 100%;

        .description {
            width: 300px;
            margin: 50px;

            .logo {
                width: 130px;
            }

            p {
                margin: 30px 0;
            }

            .linkdin-AR2C {
                filter: brightness(0) invert(1);
                cursor: pointer;

                img {
                    width: 30px;
                }
            }
        }   
        
        .struct {
            width: 300px;
            margin: 50px;

            h2 {
                margin-bottom: 20px;
            }

            ul {
                list-style: none;

                li {
                    margin: 10px 0;

                    a {
                        color: var(--color-bg);
                        text-decoration: none;
                    }
                }
            }
        }
    }

    .separator {
        width: 100%;
        height: 1px;
        background-color: var(--color-bg);
    }

    .copyright {
        text-align: center;
        margin: 30px 0;
        width: 100%;
    }
}

@media screen and (max-width: 410px) {
    footer {
        height: 100%;

        .top {
            margin: 0 !important;
            flex-direction: column;

            .description {
                margin-left: 5px;
                margin-right: 0;
            }

            .struct {
                margin-left: 5px;
                margin-right: 0;
            }
        }
    }
}

@media screen and (min-width: 410px) and (max-width: 730px) {
    footer {
        .top {
            margin-left: 5px;
            .description {
                margin: 25px 15px;
            }
        }
    }
}

@media screen and (min-width: 730px) and (max-width: 860px) {
    footer {
        .top {
            margin-left: 10px;
            .description {
                margin: 25px;
            }
        }
    }
}