*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#bannerimage::before{
    content: '';
    top: 10;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(46, 157, 255, 0.5), rgba(46, 157, 255, 0.22)), url('https://assets.website-files.com/5e4b18feebfd1a721bb930e6/5e4b18feebfd1a6617b93138_photo-1416359658663-73a3834895eb.jpg');
    width: 100%;
    height: 90vh; 
    z-index: -1;
    text-align: center;
    background-repeat: no-repeat;
    background-size: 100%;
}
#bannerimage{
    height: 90vh;
    background-color: rgb(0, 167, 209);
    opacity: 0.999;
}
.bannerheading{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.textVelocity{
    font-size: 60px;
    color: white;
    margin: 5px 0px ;
}
.demotextvelocity{
    font-size: 25px;
    color: #3ca4ff;
    margin-bottom: 30px;
}
.signupbutton{
    padding: 10px 30px;
    background-color: #69b9ff;
    color: white;
    text-decoration: none;
    transition: 0.2s ease-in;
    margin: 0px 10px;
    border-radius: 4px;
}
.learnmorebutton{
    padding: 10px 30px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    transition: 0.2s ease-in;
    border-radius: 4px;
    margin: 0px 10px;
}
.learnmorebutton:hover{
    border: 1px solid #3ca4ff;
    color: #3ca4ff;

}
.signupbutton:hover{
    background-color: #3ca4ff;
    transition: 0.2s ease-in;
}
