body {
    background-color: #e9110b;
    font-family: "Gloria Hallelujah", cursive;
    color: white;
    padding-bottom: 50px;
}

.btn-red {
    background-color: #bc0d08;
    border-color: #e9110b;
    color: white;
    font-weight: 900;
    width: 100%;
}

.btn-red:hover {
    background-color: #8d0d08;
    border-color: #e9110b;
    color: white;
    font-weight: 900;
    width: 100%;
}
.card {
    transition: transform 0.2s ease-in-out;
}
.card:hover {
    transform: translateY(-5px);
}
.card-img-top {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    object-fit: cover;
}