.wrapper{
    box-sizing: border-box;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    background: blue;
    height: 100vh;
    width: 100%;
    background: rgb(95,88,196);
    background: linear-gradient(90deg, rgba(95,88,196,1) 14%, rgba(9,9,121,1) 56%, rgba(29,46,50,1) 100%);
    /* background-color: #00DBDE;
background-image: linear-gradient(90deg, #00DBDE 0%, #FC00FF 100%); */

}
/* html{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
} */
body{
    overflow-y: hidden;
    position: relative;
    scrollbar-width: 0px;
    background: rgb(95,88,196);
    background: linear-gradient(90deg, rgba(95,88,196,1) 14%, rgba(9,9,121,1) 56%, rgba(29,46,50,1) 100%);
}
/* .index{
    
} */
/* .home-container{
    display: flex;
    flex-direction: column;
} */
.container{
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.home-container{
    margin: 0 auto;
    width: 95%;
}
.heading{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .home-header{
    /* display: flex; */
    /* border-bottom: 1px solid white; */
    /* align-items: center; */
    /* justify-content: space-between; */
    /* margin-left: 2rem; */
    /* margin-right: 2rem; */
    /* margin: 0 auto; */
    /* gap: 30rem; */
    /* margin-top: 0.75rem; */
    /* margin-bottom: 0.75rem; */
/* } */ 
.home-header{
    display: flex;
    width: 90%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;

}

.button-group{
    display: flex;
  
    gap: 1.25rem;
}
.section-button{
    cursor: pointer;
    padding: 0.75rem;
    /* background: blue; */
    border-radius: 5px;
    background: rgb(25,16,152);
    background: linear-gradient(90deg, rgba(25,16,152,1) 14%, rgba(9,9,121,1) 85%, rgba(29,46,50,1) 100%);
    font-size: 20px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    border: 1px solid white;
    transition: transform 0.3s ease
    
}
.section-button:hover{
    transform: scale(1.1)
}
.btn{
    margin: 0;
    color: white;
    padding: 0;
    border: 0;
}
/* .hero-section{
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    /* gap: 3rem; */
/* }  */
.title{
    font-size: 50px;
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.runing-para{
    width: 90%;
    /* width: 20rem; */
    /* height: 12rem; */
    margin: 0 auto;
    /* object-fit: fill; */
}

.running{
    color: white;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
}
 .footer{
    /* flex-direction: column-reverse; */

    bottom: -17rem;
    right: 33rem;
    position: absolute;
    margin-top: 1000px;
    text-align: center;
    display: flex;
    align-items: end;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto;
    padding-top: 3rem;
    /* flex-direction: column; */
    
}

/* .help{
    position: absolute;
    top: 35px;
    right: -240px;
   } */
.footer-text{
    margin: 0;
    color: white;
    font-family: "Roboto", sans-serif;
} 
.link{
    color: white;
}



@media (max-width: 800px) {
    .container{
        width: 95%;
    }
    .title{
        font-size: 40px;
    }
    .footer{
        bottom: -17rem;
        right: 10rem;
        position: absolute;
    }
}
@media (max-width: 400px){
    .footer{
        bottom: -17rem;
        right: 1rem;
        position: absolute;
    }
    .title{
        font-size: 25px;
        margin: 0 auto;
        margin-bottom: 2rem;
        margin-top: 1rem;
    }
    .container{
        width: 95%;
    }
    .home-container{
        text-align: center;
    }

}