html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
    background-color: #f8f9fa; /* Optional: Adjust as needed */
    padding: 20px 0;
}
.header {
    padding-top: 10px;
    padding-bottom: 10px;
    outline: none;
    background-color: rgb(45, 45, 45);
}

.card {
    background-color: rgb(75, 173, 243);
    border-radius: 10px;
}

.card p {
    font-weight: bold;
}

.btn-light-green {
    color: rgb(255, 255, 255) !important;
    background: rgb(0, 251, 3);
    font-size: 20px;
    padding: 10px 45px;
    text-decoration: none;
    border-radius: 60px;
    cursor: pointer;
    font-weight: bold;
}
.btn-red {
    color: rgb(255, 255, 255) !important;
    background: rgb(228, 59, 44);
    font-size: 20px;
    padding: 10px 45px;
    text-decoration: none;
    border-radius: 60px;
    cursor: pointer;
    font-weight: bold;
}
.last-btn {
    color: rgb(255, 255, 255) !important;
    background: rgb(228, 59, 44);
    font-size: 20px;
    padding: 10px 45px;
    text-decoration: none;
    border-radius: 60px;
    cursor: pointer;
    font-weight: bold;
}
.bubble {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: gray;
    border-radius: 50%;
    margin: 0 10px;
    line-height: 20px;
    color: white;
    text-align: center;
}

.bubble.active {
    background-color: green;
}

footer p{
    font-weight: bold;
    font-size: 14px;

}
footer a{
    text-decoration: none;
    color: #000 !important;
}
.cinfo {
    width: 20% !important;
}
.card i {
    margin-right: 10px;
    font-size: 17px;
}
@media (max-width:600px)
{  .btn-light-green,
    .last-btn,
    .btn-red
    {
        padding: 10px 20px;
        width: 10em;
    }
  
    .bubble {
        width: 15px;
        height: 15px;
        display: inline-block;
        background-color: gray;
        border-radius: 50%;
        margin: 0 4px;
        line-height: 20px;
        color: white;
        text-align: center;
    }
    .cinfo {
        width: 100% !important;
    }
}
@media (max-width:450px){
    footer a {
        font-size: 12px;
    }
}