body{
    background: #FFFBD0;
    color: #9C2A00;
    min-height: 100vh;
}
.card-table {
    width: 15rem;
    align-self: center;
}
.card-img-top{
    align-self: center;
    min-width: 50px;
    min-height: 50px;
    width: 150px;
    height: 150px;
    max-width: 350px;
    max-height: 350px;
}
.resize-image {
    width: 100px;
   /* Set the width as needed */
    height: auto;
   /* Maintain the aspect ratio */
}
/* Background Image */
.hero {
    background: url('../images/avif/video-2.avif') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}
/* Overlay to improve text visibility */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.btn-lg {
    font-size: 1.5rem;
    padding: 15px 30px;
}
/* Footer inside hero */
.hero-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #ddd;
    z-index: 1;
}
