@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

.campground-card {
    transition: transform 0.5s;
}

.campground-card a {
    text-decoration: none;
    color: black;
}

.campground-card img {
    height: 150px;
    object-fit: cover;
}

.campground-card:hover {
    transform: scale(1.1);
}

.show-campground-card img {
    height: 400px;
    object-fit: cover;
}

.map {
    height: 400px;
}

.alert svg {
    width: 1em;
    height: 1em;
}

@media (min-width: 1024px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}