body {
    background-image: url('./Images/b.png');
    background-position: top right;
    background-size: 40% auto;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

#traveller {
    max-width: 100%;
    height: auto;
}

#plane-a {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80px;
    z-index: 1;
}

#plane-b {
    position: absolute;
    top: 25%;
    right: 5%;
    width: 60px;
    z-index: -1;
}

.card-destination {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 24px;
    background-color: #fff;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card-destination:hover {
    transform: translateY(-10px);
}

.card-destination img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.max-width-600 {
    max-width: 600px;
}

@media (max-width: 992px) {
    body {
        background-size: 60% auto;
    }
    .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    body {
        background-image: none;
    }
    .display-4 {
        font-size: 2rem;
    }
    .card-destination img {
        height: 200px;
    }
}