.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;
}



.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;
    }

}

.grid-container {
    max-width: 90%; /* or set to a specific size like 1200px */
    padding-left: 1rem; /* Adjust padding as needed */
    padding-right: 1rem;
    margin: 0 auto; /* Center the container */
}

section {
    /* margin-top: 5vh;
    margin-bottom: 5vh; */
    padding-top: 9vh;
    padding-bottom: 9vh;

}

.bg-grey {
    background-color: #333333;
}

.bg-yellow {
    background-color: #eeb600;
}

.section-spacing {
    padding-top: 8vh;
    padding-bottom: 8vh;
}