.button {
    background-color: #E13A3A;
    /* Red background */
    color: white;
    /* White text */
    border: none;
    /* Remove default border */
    padding: 10px 20px;
    /* Padding to make it more clickable */
    font-weight: bold;
    /* Bold text */
    border-radius: 10px;
    /* Rounded corners */
    cursor: pointer;
    /* Change cursor to pointer */
    transition: background-color 0.3s ease, transform 0.3s ease;
    /* Smooth transition for hover effect */
}

/* Hover effect */
.button:hover {
    background-color: #cc0000;
    /* Slightly darker red on hover */
    transform: scale(1.05);
    /* Slightly increase size on hover */
}


.mt-5 {
    margin-top: 5vh;
}

.mb-5 {
    margin-bottom: 5vh;
}

h2 {
    font-weight: bold;
}

h4 {
    font-weight: 460;
    color: #3f3f3f
}

p{
    color: #6d6d6d;

}
.cell-text-center {
    display: flex;
    align-items: center;
    min-height: 100%;
    /* Ensure the cell matches the height of its content or neighboring columns */
    text-align: left;
    /* Optional: Center-align the text */
}




footer {
    background-color: black;

    p {
        color: white;
    }

    a {
        color: white;
    }

}