*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    padding: 0px;
}
#hero{
    width: auto;
    height: 500px;
    background-image: url("./images/istanbul\ background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;

}

.hero-h1{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-text{
    color: black;
    background: linear-gradient(to right, rgba(255, 126, 95, 0.8), rgba(254, 180, 123, 0.8));
    padding: 30px;
    border-radius: 10px;
}

#activities{
    padding: 50px;
    padding-top: 70px;
    background-color: rgb(235, 235, 235);
}

.activities-h2{
    text-align: center;
    background: linear-gradient(to right, rgba(255, 126, 95, 0.8), rgba(254, 180, 123, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;

}

.activities-container{
    display: flex;
    justify-content: center;
    height: 600px;
}

.activities-container .activity{
    text-align: center;
    margin: 20px;
    width: 500px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 15px;
}

.activities-container .activity p{
    text-align: left;
}

.activities-container .activity img {
    border-radius: 50%;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(255, 126, 95, 0.8);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 95, 56);
}
