.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.destination-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 1rem;
    background-color: #f8f8f8;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.destination-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.favorite {
    font-size: 1.3rem;
    margin: 1rem;
    color: #2c3e50;
    text-align: center;
    font-weight: bold;
}

.destination-card button {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.destination-card button:hover {
    background-color: #1a252f;
}

main h2{
    text-align: center;
}