/* Show it is fixed to the top */
body {
    min-height: 75rem;
    padding-top: 4.5rem;
    padding-bottom: 20px;
    background-color: rgb(70, 235, 156);
    background-color: rgb(162, 217, 115);
}

.zoom-on-hover {
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.zoom-on-hover:hover {
    transform: scale(0.1);
    /* 1.0 = normal, 1.5 = 150% size */
    z-index: 1000;
    /* position: relative; */
    position: absolute;
}

.navbar {
    margin-bottom: 20px;
    background-color: rgb(234, 155, 52);
}

.navbar-brand {
    color: white;
    color: rgb(229, 52, 117);
}

footer.navbar {
    min-height: 60px;
    margin-bottom: 0;
}

.pink {
    background-color: pink;
    background-color: rgb(229, 52, 117);
}

main {
    margin-bottom: 60px;
    /* Add space between content and footer */
}

.pink_bg {
    background-color: pink;
    background-color: rgb(229, 52, 117);
}

.white_bg {
    background-color: rgb(255, 255, 255);
}

.card-text {
    margin-bottom: 1px;
    font-size: 14px;
}

.card-body {
    padding: 8px;
}