body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body covers the entire viewport height */
    margin: 0;
}
main {
    flex: 1; /* This will push the footer to the bottom */
}
footer {
    background-color: #F18D00;
    color: #08062f;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}
footer a {
    color: #08062f !important;
    margin-bottom: 10px;
}
h1, h2, h3, h4, h5 {
    color: #181434;
}
.bg-beige {
    background-color: #F9F3E7;
}
.all-btn {
    background-color: #F18D00;
    color: #181434;
    border: 1px solid #F18D00;
    text-transform: uppercase;
    font-weight: bold;
}
.all-btn:hover {
    background-color: #F9F3E7;
    border: 1px solid #F18D00;
}
.form-input {
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.gallery-item {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}
.gallery-item img {
    max-width: 100%;
    height: auto;
}
table {
    background-color: #fff;
}
th, td {
    border: 1px solid #181434;
    padding: 10px;
}

/*CSS MODAL*/
.modal-window {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.25);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    visibility:hidden;
}
.modal-window:target {
    opacity: 1;
    visibility:visible;
    pointer-events: auto;
}
.modal-window > div {
    width: 80%;
    position: relative;
    margin: 80px auto;
    padding: 2rem;
    background: #fff;
    color: #444;
}
.modal-window header {
    font-weight: bold;
}
.modal-close {
    color: #aaa;
    line-height: 50px;
    font-size: 80%;
    position: absolute;
    right: 10px;
    text-align: center;
    top: 10px;
    width: 10px;
    text-decoration: none;
}
.modal-close:hover {
    color: #000;
}
.modal-window h1 {
    font-size: 150%;
    margin: 0 0 15px;
}

@media (max-width: 835px) {
    .google-img {
        width: 100%;
    }
}