/* Reservations */
#reservations {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url("../assets/Website_Images/st-patrick-green-beer.jpg");
    color: #cacaca;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    font-family: "PTSansNarrow", sans-serif;
    height: 500px;
}

#reservations .container-lg {
    display: flex;
    justify-content: center;
    align-items: center;
}

#reservations .btn {
    background-color: white;
    color: #ca3d26;
    border: none;
    font-weight: 200;
    letter-spacing: 4px;
    min-width: 200px;
}

#reservations .btn:hover {
    background-color: #ca3d26;
    color: white;
    border: none;
}

#reservations h2 {
    letter-spacing: 5px;
    font-size: 50px;
    margin-bottom: 15px;
    font-weight: 500;
}

@media only screen and (min-width: 992px) {
    #reservations {
        background-attachment: fixed;
    }
}