#navbar {
    background-color: #EB5B25;


    a {
        color: #FFFFFF !important;
        font-size: 18px;
        transition: all 0.5s;
    }

    a:hover {
        transform: scale(1.1);
    }

    img {
        border-radius: 50%;
    }

    button {
        color: #EB5B25;
        background-color: #FFFFFF;
    }
}

.div {
    width: 100%;
    height: 300px;
    border: 02px solid black;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20;
}

#list {
    margin-top: 02%;
    margin-bottom: 02%;
    display: grid;
    text-align: center;
    grid-template-columns: repeat(4, 1fr);

}

#filters {
    display: flex;
    justify-content: center;
    margin-top: 03%;

    div {
        margin: 01%;
        font-size: 25px;
    }
}