@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", sans-serif;
}

.text-shadow {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

.image-shadow {
    filter: drop-shadow(0 0 0.75rem #000000);
}

.category-item,
.category-item a {
    background-size: 100%;
    webkit-transition: background-size 0.3s ease;
    -moz-transition: background-size 0.3s ease;
    -o-transition: background-size 0.3s ease;
    -ms-transition: background-size 0.3s ease;
    transition: background-size 0.3s ease;
}

.category-item:hover a {
    background-size: 110%;
}