@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap');

a {
    color: #ffff;
    text-decoration: none;
}

a:hover {
    color: #ced4da;
}

body {
    background-color: #212529;
    font-family: 'Montserrat', sans-serif;
    color: #ffff;
}

.grow {
    transition: all .2s ease-in-out;
}

.grow:hover {
    transform: scale(1.1);
}

.card {
    background-color: rgb(0, 0, 0, 0.2);
    padding: 20px;
}

.booking-card {
    color: #ced4da;
}

.bg-darker {
    background-color: rgb(0, 0, 0, 0.2);
}

.booking-success-button {
    color: green
}

.map-responsive {

    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    overflow: hidden;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}