a {
    text-decoration: none;
    color: white;
}

p {
    color: rgb(255, 216, 190);
    font-weight: 700;
    font-size: 23px;
}

h2 {
    color: rgb(255, 216, 190);
    text-align: center;
    font-size: 40px;
}

.notification {
    text-align: center;
    font-size: 35px;
    margin: 50px 35% auto;
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: pulse 2s infinite;
}

.camping {
    margin: 50px auto;
    background-color: rgb(77, 150, 17);
    padding: 20px;
}

.photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.alcoves,
.tents {
    width: 48%;
    min-width: 300px;
    height: 400px;
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
}

.slide {
    flex: none;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prices {
    width: 60%;
    min-width: 250px;
    margin: 100px 20% auto;
    padding: 10px;
    background-color: rgb(0, 0, 0, 0.3);
    text-align: center;
}

.prices h2 {
    text-align: center;
    font-size: 28px;
}

.prices a {
    font-size: 28px;
}

.description {
    padding: 10px;
    margin-top: 40px;
    background-color: rgb(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    p {
        font-size: 17px;
    }

    h2 {
        font-size: 25px;
    }

    .notification {
        font-size: 30px;
        margin: 20px 30% 10px;
        padding: 10px 20px;
    }

    .camping {
        padding: 10px;
    }

    .photos {
        row-gap: 70px;
    }

    .alcoves,
    .tents {
        width: 45%;
        min-width: 200px;
        height: 250px;
    }

    .prices h2 {
        font-size: 18px;
    }

    .prices a {
        font-size: 20px;
    }

    .description {
        margin-top: 50px;
    }
}

@media (max-width: 500px) {

    .notification {
        font-size: 17px;
        padding: 5px 10px;
    }

    .alcoves,
    .tents {
        width: 95%;
    }

    .prices {
        width: 80%;
        min-width: 80px;
        margin: 60px 10% auto;
    }

    .prices h2 {
        font-size: 14px;
    }

    .prices a {
        font-size: 16px;
    }
}