body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #000000;
}
.header {
    background: linear-gradient(135deg, #100f10 0%, #641107 100%);
    color: white;
    padding: 20px 0;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.card-img-top {
    height: 150px;
    object-fit: cover;
}
.home-button {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
}
.home-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}
.page-title {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.page-info {
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 5px 15px;
    display: inline-block;
}
.pagination {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap; 
    flex-direction: row;
}
.footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    margin-top: 30px;
}