@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
.logo{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img{
    width: 45%;
    border: 3px solid white;
    border-radius: 110px;
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
    border: 2px solid rgba(255, 255, 255, 0.18);

}
.navbar{
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    cursor: pointer;
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
    border: 2px solid rgba(255, 255, 255, 0.18);
    

}
.nav-list{
    width: 70%;
    display: flex;
    align-items: center;


}

.nav-list li{
    list-style: none;
    padding: 26px 30px;

}

.nav-list li a{
    text-decoration: none;
    color: white;
    font-size: 25px;
    font-family: 'Ubuntu', sans-serif;
    background-image: url(../img/4.jpeg);
    box-sizing: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-list li a:hover{
    text-decoration: underline;
    color: gray;
    font-size: 40px;
    box-shadow: gray;
    transition: ease-out 2s;
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
    border: 2px solid rgba(255, 255, 255, 0.18);
}
.rightnav{
    width: 30%;
    text-align: right;
    padding: 0 23px;
}

#search{
    padding: 5px;
    font-size: 17px;
    border: 2px solid gray;
    border-radius: 9px;
}
.background{
    background: rgba(0, 0, 0,0.7) url(../img/background.jpg);
    background-size: cover;
    background-blend-mode: darken;
} 
  
section.tour-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px;
}

article.tour-item {
    width: 300px;
    background-color: #fff;
    margin: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}

article img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

article h2 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 10px;
}

article p {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 15px;
}

article h3 {
    color: #333;
    font-size: 1.2em;
    margin-top: 10px;
}

article ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
    text-align: left;
}

article ul li {
    margin-bottom: 5px;
}
article :hover{
    transition: 1s ease-in-out;
}
button {
    background-color: #ff6f61;
    color: #fff;
    border: none;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #eb4236;
} 
.Copyright{
    width: 100%;
    background: rgba(0, 0, 0, 0.1) url(../img/background.jpg);
    background-blend-mode: darken;
    background-size: auto;
    height: 100px;
}
.text-footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
    bottom: 0;
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    justify-content: center;
    color: white;
    background-image: url(../img/4.jpeg);
    box-sizing: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}