body {
    background: url('/static/img/test.png') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Bahnscript', sans-serif;
    color: white;
    text-align: center;
}
h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.btn-category {
    background-color: #262526;
    color: white;
    font-size: 1.2rem;
    margin: 0.5rem auto;
    width: 60%;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-category:hover, .btn-category.active {
    background-color: #971d31bb;
    transform: scale(1.05);
}

.filter-options {
    display: none;
    margin-top: 1rem;
}

.filter-options.active {
    display: block;
}

.filter-options .form-check {
    margin: 0.5rem 0;
}