* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body, html {
    height: 100%;
}

.topnav {
    overflow: hidden;
    background-color: #ff6f91;
    padding: 10px 20px;
    border-radius: 15px;
}

.topnav a {
    float: left;
    display: block;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Pacifico', cursive;
}

.topnav a:hover {
    background-color:black;
    color: white;
}

.header {
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.3), transparent), url('imagescssproject/water-lily-3504363_1920.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
}

.text-box {
    position: absolute;
    bottom: 8%;
    color: #fff; 
}

.text-box p {
    font-size: 50px; 
    font-weight: 600;
}

.text-box h1 {
    font-size: 190px; 
    line-height: 160px;
    margin-left: -10px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    background: url(animationfiles/back.png);
    -webkit-background-clip: text;
    background-position: 0 0;
    animation: back 20s linear infinite;
}
@keyframes back{
        100%{
        background-position: 2000px 0;
  
    }
}




.text-box h3 {
    font-size: 40px; 
    font-weight: 500;
}
.text-box .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.text-box a{
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    margin-right: 20px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
}

.text-box a span{
    font-size: 30px;
    line-height: 15px;
    margin-left: 5px;

}
::-webkit-scrollbar{
    width: 10px;

}
::-webkit-scrollbar-track{
    background: #70813a;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(#b5639a, #a09dd2);
    border-radius: 10px;

}